~ubuntu-branches/ubuntu/natty/python3.1/natty-security

« back to all changes in this revision

Viewing changes to Python/makeopcodetargets.py

  • Committer: Bazaar Package Importer
  • Author(s): Matthias Klose
  • Date: 2010-07-06 16:52:42 UTC
  • mfrom: (1.2.1 upstream) (2.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100706165242-2xv4i019r3et6c0j
Tags: 3.1.2+20100706-1ubuntu1
* Merge with Debian; remaining changes:
  - Regenerate the control file.
  - Add debian/patches/overwrite-semaphore-check for Lucid buildds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
            continue
29
29
        targets[op] = "TARGET_%s" % opname
30
30
    f.write("static void *opcode_targets[256] = {\n")
31
 
    f.write(",\n".join(["\t&&%s" % s for s in targets]))
 
31
    f.write(",\n".join(["    &&%s" % s for s in targets]))
32
32
    f.write("\n};\n")
33
33
 
34
34