cpython/Lib/xml/sax
Victor Stinner ef9c0e732f bpo-30264: ExpatParser closes the source on error (#1451)
ExpatParser.parse() of xml.sax.xmlreader now always closes the
source: close the file object or the urllib object if source is a
string (not an open file-like object). The change fixes a
ResourceWarning on parsing error.

Add test_parse_close_source() unit test.
2017-05-05 09:46:47 +02:00
..
__init__.py
_exceptions.py
expatreader.py bpo-30264: ExpatParser closes the source on error (#1451) 2017-05-05 09:46:47 +02:00
handler.py
saxutils.py
xmlreader.py