From: Eli Bendersky Date: Thu, 24 Jan 2013 15:23:34 +0000 (-0800) Subject: Clarify ET.iterparse documentation - this function is not supported by the X-Git-Tag: v3.3.1rc1~302^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=48c50bf4c84636bd92ecd77572120328cd38ee51;p=python Clarify ET.iterparse documentation - this function is not supported by the C implementation. --- diff --git a/Doc/library/xml.etree.elementtree.rst b/Doc/library/xml.etree.elementtree.rst index d9b0a520ef..d320711b65 100644 --- a/Doc/library/xml.etree.elementtree.rst +++ b/Doc/library/xml.etree.elementtree.rst @@ -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::