summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pulldom.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-17239: Disable external entities in SAX parser (GH-9217)Christian Heimes2018-09-231-0/+7
| | | | | | | | | | | | The SAX parser no longer processes general external entities by default to increase security. Before, the parser created network connections to fetch remote files or loaded local files from the file system for DTD and entities. Signed-off-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue17239
* bpo-9372: Deprecate several __getitem__ methods (GH-8609)Berker Peksag2018-08-111-0/+7
| | | | | | The __getitem__ methods of DOMEventStream, FileInput, and FileWrapper classes ignore their 'index' parameters and return the next item instead.
* Issue #23277: Remove unused sys and os importsBerker Peksag2016-04-241-1/+0
| | | | Patch by Jon Dufresne.
* Issue #21741: Update 147 test modules to use test discovery.Zachary Ware2015-04-131-6/+2
| | | | | | | I have compared output between pre- and post-patch runs of these tests to make sure there's nothing missing and nothing broken, on both Windows and Linux. The only differences I found were actually tests that were previously *not* run.
* Close a stream properly in test.test_pulldom.Brett Cannon2011-03-151-1/+3
| | | | | Closes issue #11550. Thanks to Ben Hayden for some inspiration on the solution.
* add tests for xml.pulldom #9373Benjamin Peterson2011-03-021-0/+345
Thanks to Mark Smith for the patch.