mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
python: Fix SAX driver with character streams
This apparently broke with Python 3.5 which introduced character streams. Fixes #790.
This commit is contained in:
parent
8ae06d5223
commit
40abebbc73
@ -146,7 +146,10 @@ class LibXml2Reader(xmlreader.XMLReader):
|
||||
reader = libxml2.newTextReaderFilename(source)
|
||||
else:
|
||||
source = saxutils.prepare_input_source(source)
|
||||
input = libxml2.inputBuffer(source.getByteStream())
|
||||
stream = source.getCharacterStream()
|
||||
if stream is None:
|
||||
stream = source.getByteStream()
|
||||
input = libxml2.inputBuffer(stream)
|
||||
reader = input.newTextReader(source.getSystemId())
|
||||
reader.SetErrorHandler(self._errorHandler,None)
|
||||
# configure reader
|
||||
|
Loading…
x
Reference in New Issue
Block a user