summaryrefslogtreecommitdiff
path: root/Doc/library/xml.etree.elementtree.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-30380: Fix Sphinx 1.6.1 warnings. (#1613)Serhiy Storchaka2017-05-161-1/+1
| | | | | | | | * Use explicit numbering for footnotes referred by explicit number. * Restore missed footnote reference in stdtypes.rst. * Fix literal strings formatting in howto/urllib2.rst. * Update susp-ignored.csv for zipapp.rst. * Fix suspicious mark up in Misc/NEWS.
* 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
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #23921: Standardized documentation whitespace formatting.Serhiy Storchaka2016-05-101-13/+13
| | | | Original patch by James Edwards.
* 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
| | | | This affects documentation, code comments, and a debugging messages.
* 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
|
* Issue #24079: Improve description of the text and tail attributes forNed Deily2015-08-171-11/+19
| | | | ElementTree Element objects. Initial patch by Martin Panter.
* Issue #23729: Improve docs for ElementTree namespace parsingRaymond Hettinger2015-03-301-8/+10
|
* Issue 23729: Document ElementTree namespace handling and fix an omission in ↵Raymond Hettinger2015-03-221-0/+68
| | | | the XPATH predicate table.
* Fixing broken links in doc, part 4: some more breaks and redirectsGeorg Brandl2014-10-291-1/+1
|
* Issue #20375: Clarify ET's parsing of comments and processing instructions.Eli Bendersky2014-04-031-0/+22
| | | | Based on patch by Nikolaus Rath.
* Minor readability improvement.Raymond Hettinger2014-03-291-1/+1
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-151-1/+2
|
* Fix empty strings to empty bytes objects.Serhiy Storchaka2014-02-061-1/+1
|\
| * Fix empty strings to empty bytes objects.Serhiy Storchaka2014-02-061-1/+1
| |
| * Issue #19452: Clarify the documentation of iterparse w.r.t. events argument.Eli Bendersky2013-10-311-1/+1
| | | | | | | | | | In 3.3 iterparse accepts a tuple in events (the C accelerator enforces this). This limitation was lifted in Python 3.4
* | whatsnew: XMLPullParser, plus some doc updates.R David Murray2014-01-041-9/+14
| | | | | | | | | | | | | | | | | | | | I was confused by the text saying that read_events "iterated", since it actually returns an iterator (that's what a generator does) that the caller must then iterate. So I tidied up the language. I'm not sure what the sentence "Events provided in a previous call to read_events() will not be yielded again." is trying to convey, so I didn't try to fix that. Also fixed a couple more news items.
* | shelf in with stmt, fish/csh in venv, ElementTree short_empty_elements keyword.R David Murray2013-12-251-2/+2
| | | | | | | | | | | | Also added versionadded for for fish/csh, fixed indentation of versionadded for ElementTree.write, and make the behavior of shelf as a context manager explicit in the docs.
* | merge with 3.3Georg Brandl2013-10-061-1/+1
|\ \ | |/
| * Fix: Element.text is an attribute, not a method (report by Cameron Laird on ↵Georg Brandl2013-10-061-1/+1
| | | | | | | | docs@)
* | Close #18990: remove root attribute from XMLPullParserNick Coghlan2013-09-281-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | - this was an internal implementation detail for iterparse - this has been changed to use a new private method instead - XMLPullParser.close docs are now more explicit about not returning a root element and instead direct users towards read_events - also added missing docstrings and clarified some details related to exactly *when* events are consumed from the internal queue (Initial patch by Stefan Behnel)
* | Fix XMLPullParser documentation to say "non-blocking" instead of "asynchronous".Eli Bendersky2013-08-311-17/+17
| | | | | | | | | | | | The latter is more ambiguous. Related to issue #17741
* | Issue #17741: Rename IncrementalParser and its methods.Eli Bendersky2013-08-301-90/+105
| | | | | | | | | | | | The new names are hopefully more descriptive and consistent. If you feel you don't agree with this change, *please* read issue 17741 first - there's a lot of discussion in there.
* | Issue #18760: Improved cross-references in the xml package.Serhiy Storchaka2013-08-291-2/+3
|\ \ | |/
| * Issue #18760: Improved cross-references in the xml package.Serhiy Storchaka2013-08-291-2/+3
| |
* | Merge doc fix from 3.3Eli Bendersky2013-08-251-8/+8
|\ \ | |/
| * Update XMLParser.close documentation and fix formatting.Eli Bendersky2013-08-251-7/+9
| | | | | | | | | | | | | | | | Using ``method`` markup because the method is on a callback object, not an explicitly documented method. :meth: markup creates links within the current class which is incorrect. In addition, indent the paragraph correctly.
* | Fix markup in elementtree docs.Ezio Melotti2013-08-261-2/+2
| |
* | Clarify the documentation of XMLParser.closeEli Bendersky2013-08-241-1/+3
| | | | | | | | | | | | The return value of close() is not always a toplevel element. It depends on what the underlying target returns. By default, TreeBuilder returns the toplevel document element.
* | Issue #17902: Clarify doc of ElementTree.iterparse and IncrementalParserEli Bendersky2013-08-031-2/+3
|\ \ | |/ | | | | Based on patch by Aaron Oakley
| * Issue #17902: Clarify doc of ElementTree.iterparseEli Bendersky2013-08-031-1/+2
| |
* | Clarify docs too: events can be any sequence (not that the C code supports it)Eli Bendersky2013-05-191-3/+3
| |
* | Add some documentation for IncrementalParesrEli Bendersky2013-04-201-2/+35
| |
* | Fix trailing whitespaceEli Bendersky2013-04-201-1/+1
| |
* | Update ET documentation reprhasing the mention of the new IncrementalParser inEli Bendersky2013-04-201-4/+5
| | | | | | | | the doc for iterparse.
* | Issue #17741: Add ElementTree.IncrementalParser, an event-driven parser for ↵Antoine Pitrou2013-04-181-0/+45
| | | | | | | | non-blocking applications.
* | Merge with 3.3.Georg Brandl2013-03-281-0/+2
|\ \ | |/
| * Closes #4159: add LaTeX tabular column specifications to tables that ↵Georg Brandl2013-03-281-0/+2
| | | | | | | | otherwise are cut off or have overlapping text.
* | Issue 17538: Document XML vulnerabiltiesChristian Heimes2013-03-261-0/+7
|\ \ | |/
| * Issue 17538: Document XML vulnerabiltiesChristian Heimes2013-03-261-0/+7
| |\
| | * Issue 17538: Document XML vulnerabiltiesChristian Heimes2013-03-261-0/+8
| | |
| | * Issue #11367: fix documentation of some find* methods in ElementTreeEli Bendersky2013-03-121-12/+3
| | |
| | * Clarify ET.iterparse documentation - this function is not supported by theEli Bendersky2013-01-241-2/+3
| | | | | | | | | | | | C implementation.
* | | Cleanup the docs ElementTree a bit.Serhiy Storchaka2013-01-131-6/+6
|\ \ \ | |/ /
| * | Describe the default_namespace parameter of ElemetTree.write.Serhiy Storchaka2013-01-131-1/+2
| |\ \ | | |/
| | * Describe the default_namespace parameter of ElemetTree.write.Serhiy Storchaka2013-01-131-7/+9
| | |
* | | Cleanup the docs ElementTree a bit and describe the default_namespace ↵Eli Bendersky2013-01-131-5/+7
| | | | | | | | | | | | parameter. In the code, replace the old outdated Doxygen-ish comment above ElementTree.write by a proper docstring.
* | | Close #14377: Add a new parameter to ElementTree.write and some module-levelEli Bendersky2013-01-131-3/+20
|/ / | | | | | | | | | | | | serialization functions - short_empty_elements. It controls how elements without contents are emitted. Patch by Serhiy Storchaka. Feature initially proposed by Ariel Poliak.