mirror of
https://github.com/python/cpython.git
synced 2025-07-17 16:25:18 +00:00
Convert print statements to function calls in Tools/.
This commit is contained in:
parent
e5d0e8431f
commit
6afaeb757a
66 changed files with 777 additions and 779 deletions
|
@ -17,15 +17,15 @@ def main():
|
|||
silent = 1
|
||||
MAGIC = imp.get_magic()
|
||||
if not silent:
|
||||
print 'Using MAGIC word', repr(MAGIC)
|
||||
print('Using MAGIC word', repr(MAGIC))
|
||||
for dirname in sys.path:
|
||||
try:
|
||||
names = os.listdir(dirname)
|
||||
except os.error:
|
||||
print 'Cannot list directory', repr(dirname)
|
||||
print('Cannot list directory', repr(dirname))
|
||||
continue
|
||||
if not silent:
|
||||
print 'Checking ', repr(dirname), '...'
|
||||
print('Checking ', repr(dirname), '...')
|
||||
names.sort()
|
||||
for name in names:
|
||||
if name[-3:] == '.py':
|
||||
|
@ -33,29 +33,29 @@ def main():
|
|||
try:
|
||||
st = os.stat(name)
|
||||
except os.error:
|
||||
print 'Cannot stat', repr(name)
|
||||
print('Cannot stat', repr(name))
|
||||
continue
|
||||
if verbose:
|
||||
print 'Check', repr(name), '...'
|
||||
print('Check', repr(name), '...')
|
||||
name_c = name + 'c'
|
||||
try:
|
||||
f = open(name_c, 'r')
|
||||
except IOError:
|
||||
print 'Cannot open', repr(name_c)
|
||||
print('Cannot open', repr(name_c))
|
||||
continue
|
||||
magic_str = f.read(4)
|
||||
mtime_str = f.read(4)
|
||||
f.close()
|
||||
if magic_str <> MAGIC:
|
||||
print 'Bad MAGIC word in ".pyc" file',
|
||||
print repr(name_c)
|
||||
print('Bad MAGIC word in ".pyc" file', end=' ')
|
||||
print(repr(name_c))
|
||||
continue
|
||||
mtime = get_long(mtime_str)
|
||||
if mtime == 0 or mtime == -1:
|
||||
print 'Bad ".pyc" file', repr(name_c)
|
||||
print('Bad ".pyc" file', repr(name_c))
|
||||
elif mtime <> st[ST_MTIME]:
|
||||
print 'Out-of-date ".pyc" file',
|
||||
print repr(name_c)
|
||||
print('Out-of-date ".pyc" file', end=' ')
|
||||
print(repr(name_c))
|
||||
|
||||
def get_long(s):
|
||||
if len(s) <> 4:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue