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

python: Update vendor to 2.7.6.

Location:
python/vendor/current/Mac/scripts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/vendor/current/Mac/scripts/BuildApplet.py

    r2 r388  
    113113            elif opt in ('-d', '--destroot'):
    114114                destroot = arg
    115         # On OS9 always be verbose
    116         if sys.platform == 'mac' and not verbose:
    117             verbose = 'default'
    118115        # Loop over all files to be processed
    119116        for filename in args:
  • python/vendor/current/Mac/scripts/zappycfiles.py

    r2 r388  
    1 #!/usr/local/bin/python
     1#!/usr/bin/env python
    22"""Recursively zap all .pyc and .pyo files"""
    33import os
     
    1010def main():
    1111    if not sys.argv[1:]:
    12         if os.name == 'mac':
    13             import EasyDialogs
    14             dir = EasyDialogs.AskFolder(message='Directory to zap pyc files in')
    15             if not dir:
    16                 sys.exit(0)
    17             zappyc(dir)
    18         else:
    19             print 'Usage: zappyc dir ...'
    20             sys.exit(1)
     12        print 'Usage: zappyc dir ...'
     13        sys.exit(1)
    2114    for dir in sys.argv[1:]:
    2215        zappyc(dir)
Note: See TracChangeset for help on using the changeset viewer.