should solve the 'failed compile' on the x86 gentoo 3.x buildbot.
(for compilers supporting computed gotos or "labels-as-values", such as gcc).
"""
+# This code should stay compatible with Python 2.3, at least while
+# some of the buildbots have Python 2.3 as their system Python.
+
import imp
import os
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(["\t&&%s" % s for s in targets]))
f.write("\n};\n")