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:
Nick Wellnhofer 2024-08-29 01:02:33 +02:00
parent 8ae06d5223
commit 40abebbc73

View File

@ -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