summaryrefslogtreecommitdiff
path: root/Python/makeopcodetargets.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-09-21 01:12:59 +0200
committerVictor Stinner <victor.stinner@haypocalc.com>2011-09-21 01:12:59 +0200
commit0fc80cf7d66bbe14b54bc278be47b88d0d15d996 (patch)
tree2bced3752153ebe87c3f78d662c941b4df1df2a5 /Python/makeopcodetargets.py
parent49ef44d6c75a2e07d4ee0b8395c9b253171db1ea (diff)
parentb0c9e71dba6087fe348f3eae2a83fe8a64c44dc0 (diff)
downloadcpython-0fc80cf7d66bbe14b54bc278be47b88d0d15d996.tar.gz
Merge 3.2: test_multiprocessing removes temporary files
Diffstat (limited to 'Python/makeopcodetargets.py')
-rwxr-xr-xPython/makeopcodetargets.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/makeopcodetargets.py b/Python/makeopcodetargets.py
index 5d8e5a9a46..d9a085552f 100755
--- a/Python/makeopcodetargets.py
+++ b/Python/makeopcodetargets.py
@@ -23,9 +23,6 @@ def write_contents(f):
opcode = find_module("opcode")
targets = ['_unknown_opcode'] * 256
for opname, op in opcode.opmap.items():
- if opname == "STOP_CODE":
- # XXX opcode not implemented
- continue
targets[op] = "TARGET_%s" % opname
f.write("static void *opcode_targets[256] = {\n")
f.write(",\n".join([" &&%s" % s for s in targets]))