Changeset 391 for python/trunk/Lib/base64.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/base64.py
r2 r391 349 349 if o == '-t': test1(); return 350 350 if args and args[0] != '-': 351 func(open(args[0], 'rb'), sys.stdout) 351 with open(args[0], 'rb') as f: 352 func(f, sys.stdout) 352 353 else: 353 354 func(sys.stdin, sys.stdout)
Note:
See TracChangeset
for help on using the changeset viewer.