summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_xml_etree.py
Commit message (Expand)AuthorAgeFilesLines
* gh-111811: Fix test_recursive_repr for WASI (#112130)Kushal Das2023-11-151-0/+1
* bpo-45229: Make ElementTree tests discoverable (GH-108859)Serhiy Storchaka2023-09-041-49/+17
* regrtest computes statistics (#108793)Victor Stinner2023-09-021-1/+1
* gh-96844: Improve error message of list.remove (gh-106455)Dong-hee Na2023-07-051-1/+1
* gh-100933: Improve `check_element` helper in `test_xml_etree` (#100934)Nikita Sobolev2023-02-081-23/+4
* gh-83122: Deprecate testing element truth values in `ElementTree` (#31149)Jacob Walls2023-01-231-0/+20
* gh-91447: Fix findtext to only give an empty string on None (GH-91486)Eugene Triguba2022-08-011-0/+14
* gh-94383: Remove ElementTree.Element.copy() method (#94384)Victor Stinner2022-07-041-29/+0
* gh-91810: Fix regression with writing an XML declaration with encoding='unico...Serhiy Storchaka2022-06-141-13/+3
* gh-91810: ElementTree: Use text file's encoding by default in XML declaration...Serhiy Storchaka2022-05-111-16/+15
* gh-91810: Expand ElementTree.write() tests to use non-ASCII data (GH-91989)Serhiy Storchaka2022-04-271-17/+80
* bpo-26579: Add object.__getstate__(). (GH-2821)Serhiy Storchaka2022-04-061-2/+1
* bpo-43292: Fix file leak in `ET.iterparse()` when not exhausted (GH-31696)Jacob Walls2022-03-071-0/+8
* bpo-46786: Make ElementTree write the HTML tags embed, source, track, wbr as ...Jannis Vajen2022-02-271-2/+3
* bpo-46811: Make test suite support Expat >=2.4.5 (GH-31453)Sebastian Pipping2022-02-211-6/+0
* bpo-45948: Remove constructor discrepancy in C version of ElementTree.XMLPars...Jacob Walls2022-02-121-0/+9
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-061-1/+1
* bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-28654)Serhiy Storchaka2021-09-301-8/+5
* bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005)Serhiy Storchaka2021-08-291-0/+1
* bpo-43399: Fix ElementTree.extend not working on iterators (GH-24751)Alex Prengère2021-03-301-0/+3
* bpo-42151: don't set specified_attributes=1 in pure Python ElementTree (GH-22...Felix C. Stegerman2021-02-241-0/+19
* bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147)Ammar Askar2020-11-091-0/+35
* bpo-41900: C14N 2.0 serialisation failed for unprefixed attributes when a def...scoder2020-10-031-0/+8
* bpo-41521: Rename blacklist parameter to not_exported (GH-21824)Victor Stinner2020-08-171-1/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-21772)Hai Shi2020-08-071-1/+1
* bpo-40275: Use new test.support helper submodules in tests (GH-21317)Hai Shi2020-07-061-8/+13
* bpo-39011: Preserve line endings within ElementTree attributes (GH-18468)mefistotelis2020-04-121-2/+3
* bpo-39495: Remove default value from C impl of TreeBuilder.start (GH-18275)Shantanu2020-03-021-0/+4
* bpo-20928: support base-URL and recursive includes in etree.ElementInclude (#...Stefan Behnel2019-11-251-0/+82
* bpo-32424: Deprecate xml.etree.ElementTree.Element.copy() in favor of copy.co...Gordon P. Hemsley2019-09-101-0/+29
* bpo-36543: Remove old-deprecated ElementTree features. (GH-12707)Serhiy Storchaka2019-09-011-50/+10
* bpo-14465: Add an indent() function to xml.etree.ElementTree to pretty-print ...Stefan Behnel2019-08-231-0/+117
* bpo-37399: Correctly attach tail text to the last element/comment/pi (GH-14856)Stefan Behnel2019-07-241-0/+60
* bpo-36831: Do not apply default namespace to unprefixed attributes in Element...Stefan Behnel2019-05-091-6/+21
* bpo-28238: Implement "{*}tag" and "{ns}*" wildcard tag selection support for ...Stefan Behnel2019-05-031-2/+54
* bpo-13611: C14N 2.0 implementation for ElementTree (GH-12966)Stefan Behnel2019-05-011-0/+229
* bpo-36676: Namespace prefix aware parsing support for the ET.XMLParser target...Stefan Behnel2019-05-011-5/+88
* bpo-36673: Implement comment/PI parsing support for the TreeBuilder in Elemen...Stefan Behnel2019-05-011-3/+87
* bpo-32424: Improve test coverage for xml.etree.ElementTree (GH-12891)Gordon P. Hemsley2019-04-281-2/+85
* bpo-30485: Change the prefix for defining the default namespace in ElementPat...Stefan Behnel2019-04-181-1/+1
* bpo-30485: Re-allow empty strings in ElementPath namespace mappings since the...Stefan Behnel2019-04-141-3/+0
* bpo-30485: support a default prefix mapping in ElementPath by passing None as...Stefan Behnel2019-04-141-0/+6
* bpo-36227: ElementTree.tostring() default_namespace and xml_declaration argum...Bernt Røskar Brenna2019-04-141-0/+123
* bpo-34160: Preserve user specified order of Element attributes in html. (GH-1...Serhiy Storchaka2018-10-291-8/+4
* bpo-34160: Preserve user specified order of Element attributes (GH-10163)Raymond Hettinger2018-10-281-0/+20
* bpo-35013: Add more type checks for children of Element. (GH-9944)Serhiy Storchaka2018-10-191-20/+22
* bpo-34941: Fix searching Element subclasses. (GH-9766)Serhiy Storchaka2018-10-141-0/+15
* bpo-17239: Disable external entities in SAX parser (GH-9217)Christian Heimes2018-09-231-0/+13
* bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769)Serhiy Storchaka2018-07-241-23/+8
* bpo-33761: Fix a file leak in test_iterparse in test_xml_etree. (GH-7358)Serhiy Storchaka2018-06-031-3/+5