[Python-checkins] CVS: python/dist/src/Lib webbrowser.py,1.27,1.28

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


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

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


Index: webbrowser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/webbrowser.py,v
retrieving revision 1.27
retrieving revision 1.28
diff -C2 -d -r1.27 -r1.28
*** webbrowser.py	7 Jan 2002 15:29:01 -0000	1.27
--- webbrowser.py	11 Feb 2002 18:11:09 -0000	1.28
***************
*** 323,326 ****
--- 323,327 ----
              register(cmd.lower(), None, GenericBrowser(
                  "%s '%%s'" % cmd.lower()))
+ del cmd
  
  _tryorder = filter(lambda x: _browsers.has_key(x.lower())