[Python-checkins] python/dist/src/Lib HTMLParser.py,1.16,1.17

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Thu Sep 1 08:25:46 CEST 2005


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

Modified Files:
	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.



Index: HTMLParser.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/HTMLParser.py,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- HTMLParser.py	31 Aug 2005 22:08:45 -0000	1.16
+++ HTMLParser.py	1 Sep 2005 06:25:34 -0000	1.17
@@ -36,7 +36,7 @@
         (?:'[^']*'                   # LITA-enclosed value
           |\"[^\"]*\"                # LIT-enclosed value
           |[^'\">\s]+                # bare value
-         )?
+         )
        )?
      )
    )*



More information about the Python-checkins mailing list