[Python-checkins] CVS: python/dist/src/Lib/xml __init__.py,1.8,1.9

Eric S. Raymond esr@users.sourceforge.net
Fri, 09 Feb 2001 04:03:47 -0800


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

Modified Files:
	__init__.py 
Log Message:
String method conversion.


Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xml/__init__.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** __init__.py	2000/12/16 01:43:40	1.8
--- __init__.py	2001/02/09 12:03:45	1.9
***************
*** 16,22 ****
  __all__ = ["dom", "parsers", "sax"]
  
! import string
! __version__ = string.split("$Revision$")[1]
! del string
  
  
--- 16,20 ----
  __all__ = ["dom", "parsers", "sax"]
  
! __version__ = "$Revision$".split()[1]