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

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Thu Sep 1 00:09:12 CEST 2005


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

Modified Files:
      Tag: release24-maint
	HTMLParser.py 
Log Message:
backport bug [ 761452 ] HTMLParser chokes on my.yahoo.com output



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



More information about the Python-checkins mailing list