]> granicus.if.org Git - python/commitdiff
Clarify ET.iterparse documentation - this function is not supported by the
authorEli Bendersky <eliben@gmail.com>
Thu, 24 Jan 2013 15:23:34 +0000 (07:23 -0800)
committerEli Bendersky <eliben@gmail.com>
Thu, 24 Jan 2013 15:23:34 +0000 (07:23 -0800)
C implementation.

Doc/library/xml.etree.elementtree.rst

index d9b0a520ef3a6ce5a8c1e82a05c0e1d364fc027e..d320711b656e1255fce846e8e02a901d053b8247 100644 (file)
@@ -101,8 +101,9 @@ Functions
    and ``"end-ns"`` (the "ns" events are used to get detailed namespace
    information).  If *events* is omitted, only ``"end"`` events are reported.
    *parser* is an optional parser instance.  If not given, the standard
-   :class:`XMLParser` parser is used.  Returns an :term:`iterator` providing
-   ``(event, elem)`` pairs.
+   :class:`XMLParser` parser is used.  *parser* is not supported by
+   ``cElementTree``.  Returns an :term:`iterator` providing ``(event, elem)``
+   pairs.
 
    .. note::