[Python-checkins] cpython (merge 3.5 -> default): merge with 3.5

georg.brandl python-checkins at python.org
Fri Feb 26 13:15:07 EST 2016


https://hg.python.org/cpython/rev/732e46d081b5
changeset:   100347:732e46d081b5
parent:      100345:e4deabbfc1b2
parent:      100346:29beb1554dec
user:        Georg Brandl <georg at python.org>
date:        Fri Feb 26 19:14:56 2016 +0100
summary:
  merge with 3.5

files:
  Doc/library/xml.etree.elementtree.rst |  14 +++++++-------
  1 files changed, 7 insertions(+), 7 deletions(-)


diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst
--- a/Doc/library/xml.etree.elementtree.rst
+++ b/Doc/library/xml.etree.elementtree.rst
@@ -1044,16 +1044,16 @@
 
    This class is the low-level building block of the module.  It uses
    :mod:`xml.parsers.expat` for efficient, event-based parsing of XML.  It can
-   be fed XML data incrementall with the :meth:`feed` method, and parsing events
-   are translated to a push API - by invoking callbacks on the *target* object.
-   If *target* is omitted, the standard :class:`TreeBuilder` is used.  The
-   *html* argument was historically used for backwards compatibility and is now
-   deprecated.  If *encoding* [1]_ is given, the value overrides the encoding
-   specified in the XML file.
+   be fed XML data incrementally with the :meth:`feed` method, and parsing
+   events are translated to a push API - by invoking callbacks on the *target*
+   object.  If *target* is omitted, the standard :class:`TreeBuilder` is used.
+   The *html* argument was historically used for backwards compatibility and is
+   now deprecated.  If *encoding* [1]_ is given, the value overrides the
+   encoding specified in the XML file.
 
    .. deprecated:: 3.4
       The *html* argument.  The remaining arguments should be passed via
-      keywword to prepare for the removal of the *html* argument.
+      keyword to prepare for the removal of the *html* argument.
 
    .. method:: close()
 

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list