[Python-checkins] python/dist/src/Lib sgmllib.py,1.47,1.48

fdrake at users.sourceforge.net fdrake at users.sourceforge.net
Thu Sep 9 03:50:01 CEST 2004


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1356

Modified Files:
	sgmllib.py 
Log Message:
add name that should be considered public to __all__


Index: sgmllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sgmllib.py,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -d -r1.47 -r1.48
--- sgmllib.py	12 Feb 2004 17:35:07 -0000	1.47
+++ sgmllib.py	9 Sep 2004 01:49:58 -0000	1.48
@@ -12,7 +12,7 @@
 import markupbase
 import re
 
-__all__ = ["SGMLParser"]
+__all__ = ["SGMLParser", "SGMLParseError"]
 
 # Regular expressions used for parsing
 



More information about the Python-checkins mailing list