[Python-checkins] python/dist/src/Lib modulefinder.py,1.3,1.4

jvr@users.sourceforge.net jvr@users.sourceforge.net
Sat, 01 Feb 2003 02:29:48 -0800


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

Modified Files:
	modulefinder.py 
Log Message:
removed bizarre construct, no idea why it was there...

Index: modulefinder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/modulefinder.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** modulefinder.py	29 Jan 2003 03:49:43 -0000	1.3
--- modulefinder.py	1 Feb 2003 10:29:45 -0000	1.4
***************
*** 413,417 ****
          keys.sort()
          for key in keys:
-             continue
              m = self.modules[key]
              if m.__path__:
--- 413,416 ----