[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
- Previous message: [Python-checkins] python/dist/src/Misc NEWS,1.970,1.971
- Next message: [Python-checkins] python/dist/src/Lib/xml/sax saxutils.py, 1.21, 1.21.10.1
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
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)
- Previous message: [Python-checkins] python/dist/src/Misc NEWS,1.970,1.971
- Next message: [Python-checkins] python/dist/src/Lib/xml/sax saxutils.py, 1.21, 1.21.10.1
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]