Changeset 88b6c57 in trunk
- Timestamp:
- 2010-07-28T06:27:31Z (15 years ago)
- Branches:
- master
- Children:
- 3af6f19c
- Parents:
- 1a5a338
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified bin/tahoe-script.template ¶
r1a5a338 r88b6c57 66 66 67 67 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 68 82 local_tahoe = "Scripts\\tahoe.pyscript" 69 83 else: -
TabularUnified src/allmydata/windows/fixups.py ¶
r1a5a338 r88b6c57 170 170 # Because of <http://bugs.python.org/issue8775> (and similar limitations in 171 171 # twisted), the 'bin/tahoe' script cannot invoke us with the actual Unicode arguments. 172 # Instead it "mangles" or escapes them using \x7 fas an escape character, which we172 # Instead it "mangles" or escapes them using \x7F as an escape character, which we 173 173 # unescape here. 174 174 def unmangle(s): 175 return re.sub(ur'\x7 f[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) 176 176 177 177 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)] 179 179 except Exception, e: 180 180 _complain("%s: could not unmangle Unicode arguments.\n%r" … … 182 182 raise 183 183 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.