[Python-checkins] python/dist/src/Lib modulefinder.py,1.6,1.7

jvr@users.sourceforge.net jvr@users.sourceforge.net
Fri, 18 Jul 2003 08:31:42 -0700


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

Modified Files:
	modulefinder.py 
Log Message:
up the b/w compatibility requirement to 2.2

Index: modulefinder.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/modulefinder.py,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** modulefinder.py	5 Mar 2003 17:23:48 -0000	1.6
--- modulefinder.py	18 Jul 2003 15:31:40 -0000	1.7
***************
*** 1,5 ****
  """Find modules used by a script, using introspection."""
  
! # This module should be kept compatible with Python 1.5.2, see PEP 291.
  
  import dis
--- 1,5 ----
  """Find modules used by a script, using introspection."""
  
! # This module should be kept compatible with Python 2.2, see PEP 291.
  
  import dis