summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_pulldom.py
Commit message (Collapse)AuthorAgeFilesLines
* [3.7] bpo-17239: Disable external entities in SAX parser (GH-9217) (GH-9511)Christian Heimes2018-09-241-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. (cherry picked from commit 17b1d5d4e36aa57a9b25a0e694affbd1ee637e45) Co-authored-by: Christian Heimes <christian@python.org> https://bugs.python.org/issue17239
* 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.