python/dist/src/Lib sgmllib.py,1.45,1.46
Update of /cvsroot/python/python/dist/src/Lib In directory sc8-pr-cvs1:/tmp/cvs-serv19101/Lib Modified Files: sgmllib.py Log Message: Patch #793559: Reset __starttext_tag. Fixes #709491. Backported to 2.3. Index: sgmllib.py =================================================================== RCS file: /cvsroot/python/python/dist/src/Lib/sgmllib.py,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** sgmllib.py 29 Apr 2003 22:12:54 -0000 1.45 --- sgmllib.py 20 Sep 2003 10:58:38 -0000 1.46 *************** *** 62,65 **** --- 62,66 ---- def reset(self): """Reset this instance. Loses all unprocessed data.""" + self.__starttag_text = None self.rawdata = '' self.stack = [] *************** *** 222,226 **** return j-i - __starttag_text = None def get_starttag_text(self): return self.__starttag_text --- 223,226 ----
participants (1)
-
loewis@users.sourceforge.net