[wpdev-commits] xmlscripts/python-lib/xml/parsers expat.py,1.2,1.3
Brought to you by:
rip,
thiagocorrea
|
From: <co...@us...> - 2003-11-10 12:44:21
|
Update of /cvsroot/wpdev/xmlscripts/python-lib/xml/parsers In directory sc8-pr-cvs1:/tmp/cvs-serv5168/xml/parsers Modified Files: expat.py Log Message: Updated to Python 2.3.2 Index: expat.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/python-lib/xml/parsers/expat.py,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** expat.py 21 Dec 2002 14:52:55 -0000 1.2 --- expat.py 10 Nov 2003 12:44:17 -0000 1.3 *************** *** 2,13 **** __version__ = '$Revision$' ! import sys ! ! try: ! from pyexpat import * ! except ImportError: ! del sys.modules[__name__] ! del sys ! raise ! ! del sys --- 2,4 ---- __version__ = '$Revision$' ! from pyexpat import * |