[Python-checkins] CVS: python/dist/src/Lib dis.py,1.37,1.38

Neal Norwitz nnorwitz@users.sourceforge.net
Mon, 11 Feb 2002 10:14:24 -0800


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv10637

Modified Files:
	dis.py 
Log Message:
SF #515009, delete global variable that was apparently used only
in a for loop.


Index: dis.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/dis.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -d -r1.37 -r1.38
*** dis.py	29 Aug 2001 18:02:21 -0000	1.37
--- dis.py	11 Feb 2002 18:14:22 -0000	1.38
***************
*** 136,139 ****
--- 136,140 ----
  opname = [''] * 256
  for op in range(256): opname[op] = '<' + `op` + '>'
+ del op
  
  def def_op(name, op):