[Python-checkins] python/dist/src/Lib/xml/sax expatreader.py, 1.32, 1.33 (original) (raw)

loewis at users.sourceforge.net loewis at users.sourceforge.net
Wed May 5 21:54:38 EDT 2004


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

Modified Files: expatreader.py Log Message: Swap public and system ID in start_doctype_decl. Fixes #780300.

Index: expatreader.py

RCS file: /cvsroot/python/python/dist/src/Lib/xml/sax/expatreader.py,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** expatreader.py 27 Feb 2003 20:14:51 -0000 1.32 --- expatreader.py 6 May 2004 01:54:36 -0000 1.33


*** 362,366 **** self._cont_handler.endPrefixMapping(prefix)

! def start_doctype_decl(self, name, pubid, sysid, has_internal_subset): self._lex_handler_prop.startDTD(name, pubid, sysid)

--- 362,366 ---- self._cont_handler.endPrefixMapping(prefix)

! def start_doctype_decl(self, name, sysid, pubid, has_internal_subset): self._lex_handler_prop.startDTD(name, pubid, sysid)



More information about the Python-checkins mailing list