summaryrefslogtreecommitdiffstats
path: root/Doc/library/xml.etree.elementtree.rst
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-127502: Remove XML vulnerability table (GH-135294) (#136360)Miss Islington (bot)2025-07-071-4/+3
* [3.13] Fix typo in XMLParser doc (GH-124129) (#124280)Miss Islington (bot)2024-09-231-1/+1
* [3.13] gh-123213: Fixed xml.etree.ElementTree.Element.extend and assignment t...Miss Islington (bot)2024-09-021-1/+1
* [3.13] Docs: Fix duplicate object description warnings (GH-122068) (#122069)Miss Islington (bot)2024-07-201-0/+1
* [3.13] Fix typo in ElementTree docs (GH-120342) (#120357)Miss Islington (bot)2024-06-111-1/+1
* [3.13] gh-119577: Adjust DeprecationWarning when testing element truth values...Miss Islington (bot)2024-06-071-3/+4
* [3.13] docs: module page titles should not start with a link to themselves (G...Miss Islington (bot)2024-05-081-2/+2
* gh-101549: fix documentation of xml.etree.ElementInclude (#101550)Mikhail B2024-04-111-20/+15
* Docs: specify XML document name in xml.etree.elementtree example (#24223)Moshe Kaplan2024-04-011-1/+1
* gh-115398: Suggest use of `hasattr` with checking for 3.13 Expat API availabi...Sebastian Pipping2024-03-061-0/+10
* gh-115398: Expose Expat >=2.6.0 reparse deferral API (CVE-2023-52425) (GH-115...Sebastian Pipping2024-02-291-0/+29
* gh-69893: Add the close() method for xml.etree.ElementTree.iterparse() iterat...Serhiy Storchaka2024-02-041-0/+5
* Fix typos in ElementTree documentation (GH-108848)Christophe Nanteuil2024-02-011-3/+3
* Docs: align usage of versionadded/versionchanged with recommended practice (#...Erlend E. Aasland2024-01-221-12/+12
* gh-93607: document `root` attribute of `iterparse` (#99410)Prometheus33752023-10-311-1/+3
* typo: missing line of output in pull parser example (#111068)Don Patterson2023-10-231-0/+1
* gh-101100: Fix sphinx warnings in `Doc/library/xml.etree.elementtree.rst` (#1...Nikita Sobolev2023-09-241-1/+6
* gh-83122: Deprecate testing element truth values in `ElementTree` (#31149)Jacob Walls2023-01-231-3/+6
* gh-99087: Add missing newline for prompts in docs (GH-98993)Stanley2022-12-091-0/+1
* bpo-46879: Fix incorrect sphinx object names in doc (GH-31615)Martin Fischer2022-05-191-0/+2
* Remove effbot urls (GH-26308)E-Paine2021-05-221-7/+0
* bpo-40624: Add support for the XPath != operator in xml.etree (GH-22147)Ammar Askar2020-11-091-0/+18
* bpo-41892: Clarify that an example in the ElementTree docs explicitly avoids ...scoder2020-10-041-0/+6
* bpo-36543: Revert "bpo-36543: Remove the xml.etree.cElementTree module." (GH-...Serhiy Storchaka2020-06-101-0/+2
* bpo-33187: Document 3.9 changes to xml.etree.ElementInclude.include (GH-20438)Shantanu2020-06-081-2/+11
* bpo-38738: Fix formatting of True and False. (GH-17083)Serhiy Storchaka2019-11-121-2/+2
* bpo-33187: Document ElementInclude (XInclude) support in ElementTree (GH-8861)Anjali Bansal2019-09-111-0/+89
* bpo-36543: Remove old-deprecated ElementTree features. (GH-12707)Serhiy Storchaka2019-09-011-18/+0
* bpo-14465: Add an indent() function to xml.etree.ElementTree to pretty-print ...Stefan Behnel2019-08-231-0/+12
* bpo-34160: explain how to deal with attribute order in ElementTree (GH-14867)Stefan Behnel2019-07-241-2/+40
* bpo-28238: Implement "{*}tag" and "{ns}*" wildcard tag selection support for ...Stefan Behnel2019-05-031-2/+15
* bpo-13611: C14N 2.0 implementation for ElementTree (GH-12966)Stefan Behnel2019-05-011-0/+60
* bpo-36676: Namespace prefix aware parsing support for the ET.XMLParser target...Stefan Behnel2019-05-011-2/+20
* bpo-36673: Implement comment/PI parsing support for the TreeBuilder in Elemen...Stefan Behnel2019-05-011-12/+53
* bpo-30485: Change the prefix for defining the default namespace in ElementPat...Stefan Behnel2019-04-181-3/+3
* bpo-30485: support a default prefix mapping in ElementPath by passing None as...Stefan Behnel2019-04-141-3/+6
* bpo-36227: ElementTree.tostring() default_namespace and xml_declaration argum...Bernt Røskar Brenna2019-04-141-6/+15
* bpo-28235: Fix xml.etree.ElementTree.fromstring docs (GH-11903)Manjusaka2019-02-221-2/+4
* bpo-34160: Preserve user specified order of Element attributes (GH-10163)Raymond Hettinger2018-10-281-0/+8
* bpo-29209: Remove old-deprecated features in ElementTree. (GH-6769)Serhiy Storchaka2018-07-241-16/+9
* bpo-32800: Update link to w3c doc for xml default namespaces (GH-5609)sblondon2018-02-101-1/+1
* bpo-31648: Improve ElementPath (#3835)scoder2017-09-301-0/+5
* bpo-30380: Fix Sphinx 1.6.1 warnings. (#1613)Serhiy Storchaka2017-05-161-1/+1
* Issue #19795: Mark up True and False as literal text instead of bold.Serhiy Storchaka2016-10-191-1/+1
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-0/+5
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-13/+13
* Issue #26736: Used HTTPS for external links in the documentation if possible.Serhiy Storchaka2016-05-071-4/+4
* Correct “an” → “a” with “Unicode”, “user”, “UTF”, etcMartin Panter2016-04-151-1/+1
* Closes #26444: typo fixes.Georg Brandl2016-02-261-7/+7
* Issue #25161: Add full stops in documentation; patch by Takase ArihiroMartin Panter2015-10-101-1/+1