diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-05-09 16:14:21 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-05-09 16:14:21 +0000 |
commit | c14f70a6dbf5ac43e06e74b0035738f617a4540e (patch) | |
tree | 40b837bee09a9ac0e318d957cab5a7831dd7dfd8 /Python/makeopcodetargets.py | |
parent | 02ddff42380be032c59d02a3e45e8f96a4a57778 (diff) | |
download | cpython-c14f70a6dbf5ac43e06e74b0035738f617a4540e.tar.gz |
Recorded merge of revisions 81032 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
................
r81032 | antoine.pitrou | 2010-05-09 17:52:27 +0200 (dim., 09 mai 2010) | 9 lines
Recorded merge of revisions 81029 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r81029 | antoine.pitrou | 2010-05-09 16:46:46 +0200 (dim., 09 mai 2010) | 3 lines
Untabify C files. Will watch buildbots.
........
................
Diffstat (limited to 'Python/makeopcodetargets.py')
-rwxr-xr-x | Python/makeopcodetargets.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/makeopcodetargets.py b/Python/makeopcodetargets.py index a85ac52151..5d8e5a9a46 100755 --- a/Python/makeopcodetargets.py +++ b/Python/makeopcodetargets.py @@ -28,7 +28,7 @@ def write_contents(f): continue targets[op] = "TARGET_%s" % opname f.write("static void *opcode_targets[256] = {\n") - f.write(",\n".join(["\t&&%s" % s for s in targets])) + f.write(",\n".join([" &&%s" % s for s in targets])) f.write("\n};\n") |