[Python-checkins] python/dist/src/Lib sgmllib.py,1.45,1.45.8.1

loewis at users.sourceforge.net loewis at users.sourceforge.net
Sat Sep 20 06:58:05 EDT 2003


Update of /cvsroot/python/python/dist/src/Lib
In directory sc8-pr-cvs1:/tmp/cvs-serv18924/Lib

Modified Files:
      Tag: release23-maint
	sgmllib.py 
Log Message:
Patch #793559: Reset __starttext_tag. Fixes #709491.


Index: sgmllib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/sgmllib.py,v
retrieving revision 1.45
retrieving revision 1.45.8.1
diff -C2 -d -r1.45 -r1.45.8.1
*** sgmllib.py	29 Apr 2003 22:12:54 -0000	1.45
--- sgmllib.py	20 Sep 2003 10:58:03 -0000	1.45.8.1
***************
*** 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 ----





More information about the Python-checkins mailing list