Changeset 88b6c57 in trunk


Ignore:
Timestamp:
2010-07-28T06:27:31Z (15 years ago)
Author:
david-sarah <david-sarah@…>
Branches:
master
Children:
3af6f19c
Parents:
1a5a338
Message:

Skip option arguments to the python interpreter when reconstructing Unicode argv on Windows.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified bin/tahoe-script.template

    r1a5a338 r88b6c57  
    6666
    6767    argv = [mangle(argv_unicode[i]) for i in xrange(1, argc.value)]
     68
     69    # Skip option arguments to the Python interpreter.
     70    while len(argv) > 0:
     71        arg = argv[0]
     72        if not arg.startswith(u"-") or arg == u"-":
     73            break
     74        argv = argv[1:]
     75        if arg == u'-m':
     76            # sys.argv[0] should really be the absolute path of the module source, but never mind
     77            break
     78        if arg == u'-c':
     79            argv[0] = u'-c'
     80            break
     81
    6882    local_tahoe = "Scripts\\tahoe.pyscript"
    6983else:
  • TabularUnified src/allmydata/windows/fixups.py

    r1a5a338 r88b6c57  
    170170    # Because of <http://bugs.python.org/issue8775> (and similar limitations in
    171171    # twisted), the 'bin/tahoe' script cannot invoke us with the actual Unicode arguments.
    172     # Instead it "mangles" or escapes them using \x7f as an escape character, which we
     172    # Instead it "mangles" or escapes them using \x7F as an escape character, which we
    173173    # unescape here.
    174174    def unmangle(s):
    175         return re.sub(ur'\x7f[0-9a-fA-F]*\;', lambda m: unichr(int(m.group(0)[1:-1], 16)), s)
     175        return re.sub(ur'\x7F[0-9a-fA-F]*\;', lambda m: unichr(int(m.group(0)[1:-1], 16)), s)
    176176
    177177    try:
    178         sys.argv = [unmangle(argv_unicode[i]).encode('utf-8') for i in xrange(1, argc.value)]
     178        argv = [unmangle(argv_unicode[i]).encode('utf-8') for i in xrange(1, argc.value)]
    179179    except Exception, e:
    180180        _complain("%s:  could not unmangle Unicode arguments.\n%r"
     
    182182        raise
    183183
    184     if sys.argv[0].endswith('.pyscript'):
    185         sys.argv[0] = sys.argv[0][:-9]
     184    # Skip option arguments to the Python interpreter.
     185    while len(argv) > 0:
     186        arg = argv[0]
     187        if not arg.startswith(u"-") or arg == u"-":
     188            if arg.endswith('.pyscript'):
     189                argv[0] = arg[:-9]
     190            break
     191        argv = argv[1:]
     192        if arg == u'-m':
     193            # sys.argv[0] should really be the absolute path of the module source, but never mind
     194            break
     195        if arg == u'-c':
     196            argv[0] = u'-c'
     197            break
     198
     199    sys.argv = argv
Note: See TracChangeset for help on using the changeset viewer.