diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-02-11 18:14:22 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-02-11 18:14:22 (GMT) |
commit | aa38aa54359104364ef0c929c836b359af39de3c (patch) | |
tree | f2e27d35c365162ce71904dbe6c0d4b1799ac10c /Lib/dis.py | |
parent | d5ba4aeab0c93c4bf6f76bd8c4d40ec2398e2f65 (diff) | |
download | cpython-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.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |