Skip to content
Snippets Groups Projects
Commit 27125237 authored by Robert Read's avatar Robert Read
Browse files

don't use +=, because old pythons don't have it

parent 299c7e67
No related branches found
No related tags found
No related merge requests found
...@@ -1015,7 +1015,7 @@ def cmdlinesplit(cmdline): ...@@ -1015,7 +1015,7 @@ def cmdlinesplit(cmdline):
sys.exit(1) sys.exit(1)
i = match.end() i = match.end()
if arg is None: arg = esc_quote.sub(r'\1', match.group(1)) if arg is None: arg = esc_quote.sub(r'\1', match.group(1))
else: arg += esc_quote.sub(r'\1', match.group(1)) else: arg = arg + esc_quote.sub(r'\1', match.group(1))
elif c == "'": elif c == "'":
match = single_quote.match(cmdline, i) match = single_quote.match(cmdline, i)
...@@ -1024,7 +1024,7 @@ def cmdlinesplit(cmdline): ...@@ -1024,7 +1024,7 @@ def cmdlinesplit(cmdline):
sys.exit(1) sys.exit(1)
i = match.end() i = match.end()
if arg is None: arg = match.group(1) if arg is None: arg = match.group(1)
else: arg += match.group(1) else: arg = arg + match.group(1)
elif c == "\\": elif c == "\\":
match = escaped.match(cmdline, i) match = escaped.match(cmdline, i)
...@@ -1033,20 +1033,20 @@ def cmdlinesplit(cmdline): ...@@ -1033,20 +1033,20 @@ def cmdlinesplit(cmdline):
sys.exit(1) sys.exit(1)
i = match.end() i = match.end()
if arg is None: arg = match.group(1) if arg is None: arg = match.group(1)
else: arg += match.group(1) else: arg = arg + match.group(1)
elif c.isspace(): elif c.isspace():
if arg != None: if arg != None:
arg_list.append(str(arg)) arg_list.append(str(arg))
arg = None arg = None
while i < len(cmdline) and cmdline[i].isspace(): while i < len(cmdline) and cmdline[i].isspace():
i += 1 i = i + 1
else: else:
match = outside.match(cmdline, i) match = outside.match(cmdline, i)
assert match assert match
i = match.end() i = match.end()
if arg is None: arg = match.group() if arg is None: arg = match.group()
else: arg += match.group() else: arg = arg + match.group()
if arg != None: arg_list.append(str(arg)) if arg != None: arg_list.append(str(arg))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment