Ignore:
Timestamp:
Mar 19, 2014, 11:11:30 AM (11 years ago)
Author:
dmik
Message:

python: Update vendor to 2.7.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Lib/base64.py

    r2 r388  
    349349        if o == '-t': test1(); return
    350350    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)
    352353    else:
    353354        func(sys.stdin, sys.stdout)
Note: See TracChangeset for help on using the changeset viewer.