mirror of
https://github.com/python/cpython.git
synced 2025-08-30 05:35:08 +00:00
parent
ecfeb7f095
commit
70a6b49821
246 changed files with 926 additions and 962 deletions
|
@ -65,7 +65,7 @@ def main():
|
|||
def check(file):
|
||||
if os.path.isdir(file) and not os.path.islink(file):
|
||||
if verbose:
|
||||
print "%s: listing directory" % `file`
|
||||
print "%r: listing directory" % (file,)
|
||||
names = os.listdir(file)
|
||||
for name in names:
|
||||
fullname = os.path.join(file, name)
|
||||
|
@ -78,15 +78,15 @@ def check(file):
|
|||
try:
|
||||
f = open(file)
|
||||
except IOError, msg:
|
||||
errprint("%s: I/O Error: %s" % (`file`, str(msg)))
|
||||
errprint("%r: I/O Error: %s" % (file, msg))
|
||||
return
|
||||
|
||||
if verbose > 1:
|
||||
print "checking", `file`, "..."
|
||||
print "checking %r ..." % (file,)
|
||||
|
||||
ok = AppendChecker(file, f).run()
|
||||
if verbose and ok:
|
||||
print "%s: Clean bill of health." % `file`
|
||||
print "%r: Clean bill of health." % (file,)
|
||||
|
||||
[FIND_DOT,
|
||||
FIND_APPEND,
|
||||
|
@ -105,7 +105,7 @@ class AppendChecker:
|
|||
try:
|
||||
tokenize.tokenize(self.file.readline, self.tokeneater)
|
||||
except tokenize.TokenError, msg:
|
||||
errprint("%s: Token Error: %s" % (`self.fname`, str(msg)))
|
||||
errprint("%r: Token Error: %s" % (self.fname, msg))
|
||||
self.nerrors = self.nerrors + 1
|
||||
return self.nerrors == 0
|
||||
|
||||
|
@ -159,7 +159,7 @@ class AppendChecker:
|
|||
state = FIND_DOT
|
||||
|
||||
else:
|
||||
raise SystemError("unknown internal state '%s'" % `state`)
|
||||
raise SystemError("unknown internal state '%r'" % (state,))
|
||||
|
||||
self.state = state
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue