[issue10277] sax leaks a fd if source is a filename

2010-11-01 Thread Benjamin Peterson
Changes by Benjamin Peterson : -- resolution: fixed -> out of date status: pending -> closed ___ Python tracker ___ ___ Python-bugs-li

[issue10277] sax leaks a fd if source is a filename

2010-11-01 Thread Benjamin Peterson
Benjamin Peterson added the comment: It is now. -- nosy: +benjamin.peterson resolution: -> fixed status: open -> pending ___ Python tracker ___

[issue10277] sax leaks a fd if source is a filename

2010-11-01 Thread Brian Brazil
New submission from Brian Brazil : If saxutils.prepare_input_source is passed a filename or url, it'll end up leaking an fd via IncrementalParser.parse and ExpatParser.parse. This can be seen by enabling resource warnings and running test_sax. This should be fixed. -- components: Libr