Issue 6686: xml.sax.xmlreader.XMLReader.getProperty (xml.sax.handler.property_xml_string) returns bytes (original) (raw)

Created on 2009-08-11 19:19 by cms103, last changed 2022-04-11 14:56 by admin.

Files
File name Uploaded Description Edit
expatreader.py.patch cms103,2009-08-12 21:06 Patch to return xml.sax.handler.property_xml_string as a string rather than bytes.
expatreader.py.patch2 cms103,2009-08-12 21:07 Patch to return xml.sax.handler.property_xml_string as a string and to provide the Locator2 interface.
Pull Requests
URL Status Linked Edit
PR 9715 closed Jonathan.Gossage,2018-10-05 15:38
PR 10328 closed Jonathan.Gossage,2018-11-05 02:36
PR 30612 open ukarroum,2022-01-15 09:56
Messages (7)
msg91482 - (view) Author: Colin Stewart (cms103) Date: 2009-08-11 19:19
The documentation for the xml.sax.handler.property_xml_string SAX property states that it should be "data type: String". However when retrieving this value in Python 3.1 it returns a bytes object instead. This makes handling the returned value very difficult because there is no method for retrieving the character set encoding that the XML was originally encoded with. This is currently blocking the port of SimpleTAL to Python 3 achieving feature parity with Python 2.
msg91503 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2009-08-12 19:19
Would you like to contribute a patch?
msg91504 - (view) Author: Colin Stewart (cms103) Date: 2009-08-12 21:06
I'm not familiar with the inner workings of the expat integration with Python, so the attached patches need careful review. The first patch (expatreader.py.patch) is the minimum to resolve this issue. The second patch (expatreader.py.patch2) also exposes the version and encoding parameters via the Locator2 interface (http://www.saxproject.org/apidoc/org/xml/sax/ext/Locator2.html), which I'd recommend including.
msg91505 - (view) Author: Colin Stewart (cms103) Date: 2009-08-12 21:07
Adding second patch.
msg110871 - (view) Author: Amaury Forgeot d'Arc (amaury.forgeotdarc) * (Python committer) Date: 2010-07-20 07:11
A unit test (or even a sample script) showing the desired feature is needed.
msg327700 - (view) Author: Tal Einat (taleinat) * (Python committer) Date: 2018-10-14 09:13
See additional research and discussion in the comments of PR GH-9715. Simply changing this to return a string rather than bytes would break backwards compatibility. I certainly agree that this should have returned a string in the first place, especially since the Unicode decoding is otherwise completely abstracted away and the encoding used is not made available. Our options: 1. Return a string starting with 3.8, document the change in What's New & fix the docs for older 3.x. 2. Continue returning bytes, update the docs for all 3.x that this returns bytes, and that there's no good way to know the proper encoding to use for decoding it. 3. As 2 above, but also expose the encoding used. Since this appears to be rarely used and option 3 requires significantly more effort than the others, I am against it. Option 2 seems the safest, but I'd like to hear more from those more experienced with XML.
msg327708 - (view) Author: Jonathan Gossage (Jonathan.Gossage) * Date: 2018-10-14 13:52
The other thing to consider which also supports option 2 is that xml.parsers.expat provides an interface to the Expat parser which is easier to use and more complete than the Sax parser implementation and is the implementation likely to be used by anyone needing a streaming parser.
History
Date User Action Args
2022-04-11 14:56:51 admin set github: 50935
2022-01-15 16:25:18 iritkatriel set versions: + Python 3.9, Python 3.10, Python 3.11, - Python 3.6, Python 3.7, Python 3.8
2022-01-15 09:56:43 ukarroum set nosy: + ukarroumpull_requests: + <pull%5Frequest28814>
2019-05-30 20:00:45 cheryl.sabella set nosy: + scoder
2018-11-05 02:36:07 Jonathan.Gossage set pull_requests: + <pull%5Frequest9632>
2018-10-14 13:52:28 Jonathan.Gossage set messages: +
2018-10-14 09:13:12 taleinat set nosy: + taleinat, Jonathan.Gossagemessages: + versions: + Python 3.6, Python 3.7, Python 3.8, - Python 3.1
2018-10-05 15:38:40 Jonathan.Gossage set stage: test needed -> patch reviewpull_requests: + <pull%5Frequest9101>
2018-10-04 14:49:19 zach.ware set nosy: + christian.heimes
2010-07-20 07:11:34 amaury.forgeotdarc set nosy: + amaury.forgeotdarcmessages: + stage: test needed
2009-08-12 21:07:27 cms103 set files: + expatreader.py.patch2messages: +
2009-08-12 21:06:32 cms103 set files: + expatreader.py.patchkeywords: + patchmessages: +
2009-08-12 19:19:57 loewis set nosy: + loewismessages: +
2009-08-11 19:19:52 cms103 create