[Python-checkins] python/dist/src/Lib HTMLParser.py, 1.15.2.1, 1.15.2.2

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Thu Sep 1 08:26:14 CEST 2005


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

Modified Files:
      Tag: release24-maint
	HTMLParser.py 
Log Message:
Reverting previous checkin. This breaks too much of HTMLParser to be applied
without thought. Anyway, such malformed HTML is better handled by something
like BeautifulSoup.

CVS: ----------------------------------------------------------------------
CVS: Enter Log.  Lines beginning with `CVS:' are removed automatically
CVS: 
CVS: Committing in .
CVS: 
CVS: Modified Files:
CVS: 	Lib/HTMLParser.py 
CVS: ----------------------------------------------------------------------


Index: HTMLParser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/HTMLParser.py,v
retrieving revision 1.15.2.1
retrieving revision 1.15.2.2
diff -u -d -r1.15.2.1 -r1.15.2.2
--- HTMLParser.py	31 Aug 2005 22:09:02 -0000	1.15.2.1
+++ HTMLParser.py	1 Sep 2005 06:26:03 -0000	1.15.2.2
@@ -36,7 +36,7 @@
         (?:'[^']*'                   # LITA-enclosed value
           |\"[^\"]*\"                # LIT-enclosed value
           |[^'\">\s]+                # bare value
-         )?
+         )
        )?
      )
    )*



More information about the Python-checkins mailing list