[Python-checkins] CVS: python/dist/src/Lib xmllib.py

Guido van Rossum guido@cnri.reston.va.us
Tue, 2 Feb 1999 12:54:40 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Lib
In directory eric:/projects/python/develop/guido/src/Lib

Modified Files:
	xmllib.py 
Log Message:
Patch by Sjoerd Mullender to placate /F:

Fix leaking of instances by removing the elements variable that we
created on closing the parser.  The elements variable is now created
in the reset() method, so that the sequence close(); reset();
... works.
Also, add the name of the entity reference that wasn't found to the
error message.