From: Neal Norwitz Date: Mon, 11 Feb 2002 18:14:22 +0000 (+0000) Subject: SF #515009, delete global variable that was apparently used only X-Git-Tag: v2.3c1~6693 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=aa38aa54359104364ef0c929c836b359af39de3c;p=thirdparty%2FPython%2Fcpython.git SF #515009, delete global variable that was apparently used only in a for loop. --- diff --git a/Lib/dis.py b/Lib/dis.py index 6b4c67f87e94..39bfb7d0b480 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