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

birkenfeld@users.sourceforge.net birkenfeld at users.sourceforge.net
Thu Sep 1 00:08:56 CEST 2005


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

Modified Files:
	HTMLParser.py 
Log Message:
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.16
diff -u -d -r1.15 -r1.16
--- HTMLParser.py	8 Sep 2004 22:58:36 -0000	1.15
+++ HTMLParser.py	31 Aug 2005 22:08:45 -0000	1.16
@@ -36,7 +36,7 @@
         (?:'[^']*'                   # LITA-enclosed value
           |\"[^\"]*\"                # LIT-enclosed value
           |[^'\">\s]+                # bare value
-         )
+         )?
        )?
      )
    )*



More information about the Python-checkins mailing list