mirror of
https://github.com/python/cpython.git
synced 2025-09-27 10:50:04 +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
|
@ -8,8 +8,8 @@ filespec = macfs.FSSpec('my disk image.img')
|
|||
try:
|
||||
objref = talker.create('my disk image', saving_as=filespec, leave_image_mounted=1)
|
||||
except Disk_Copy.Error as arg:
|
||||
print "ERROR: my disk image:", arg
|
||||
print("ERROR: my disk image:", arg)
|
||||
else:
|
||||
print 'objref=', objref
|
||||
print 'Type return to exit-'
|
||||
print('objref=', objref)
|
||||
print('Type return to exit-')
|
||||
sys.stdin.readline()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue