summaryrefslogtreecommitdiffstats
path: root/Lib/dis.py
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2002-02-11 18:14:22 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2002-02-11 18:14:22 (GMT)
commitaa38aa54359104364ef0c929c836b359af39de3c (patch)
treef2e27d35c365162ce71904dbe6c0d4b1799ac10c /Lib/dis.py
parentd5ba4aeab0c93c4bf6f76bd8c4d40ec2398e2f65 (diff)
downloadcpython-aa38aa54359104364ef0c929c836b359af39de3c.zip
cpython-aa38aa54359104364ef0c929c836b359af39de3c.tar.gz
cpython-aa38aa54359104364ef0c929c836b359af39de3c.tar.bz2
SF #515009, delete global variable that was apparently used only
in a for loop.
Diffstat (limited to 'Lib/dis.py')
-rw-r--r--Lib/dis.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/dis.py b/Lib/dis.py
index 6b4c67f..39bfb7d 100644
--- a/Lib/dis.py
+++ b/Lib/dis.py
@@ -135,6 +135,7 @@ hasfree = []
opname = [''] * 256
for op in range(256): opname[op] = '<' + `op` + '>'
+del op
def def_op(name, op):
opname[op] = name