mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
Run 2to3's print fixer over some places that had been missed.
This commit is contained in:
parent
716c3ac40c
commit
e7bf59f500
51 changed files with 253 additions and 253 deletions
|
@ -25,23 +25,23 @@ def copycleandir(src, dst):
|
|||
assert cursrc.startswith(src)
|
||||
curdst = dst + cursrc[len(src):]
|
||||
if verbose:
|
||||
print "mkdir", curdst
|
||||
print("mkdir", curdst)
|
||||
if not debug:
|
||||
if not os.path.exists(curdst):
|
||||
os.makedirs(curdst)
|
||||
for fn in files:
|
||||
if isclean(fn):
|
||||
if verbose:
|
||||
print "copy", os.path.join(cursrc, fn), os.path.join(curdst, fn)
|
||||
print("copy", os.path.join(cursrc, fn), os.path.join(curdst, fn))
|
||||
if not debug:
|
||||
shutil.copy2(os.path.join(cursrc, fn), os.path.join(curdst, fn))
|
||||
else:
|
||||
if verbose:
|
||||
print "skipfile", os.path.join(cursrc, fn)
|
||||
print("skipfile", os.path.join(cursrc, fn))
|
||||
for i in range(len(dirs)-1, -1, -1):
|
||||
if not isclean(dirs[i]):
|
||||
if verbose:
|
||||
print "skipdir", os.path.join(cursrc, dirs[i])
|
||||
print("skipdir", os.path.join(cursrc, dirs[i]))
|
||||
del dirs[i]
|
||||
|
||||
def main():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue