Home
last modified time | relevance | path

Searched refs:iterparse (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_xml_etree.py515 iterparse = ET.iterparse
517 context = iterparse(SIMPLE_XMLFILE)
527 context = iterparse(SIMPLE_NS_XMLFILE)
536 context = iterparse(SIMPLE_XMLFILE, events)
540 context = iterparse(SIMPLE_XMLFILE, events=events)
544 context = iterparse(SIMPLE_XMLFILE, events)
557 context = iterparse(SIMPLE_NS_XMLFILE, events)
574 context = iterparse(StringIO.StringIO(r"<root xmlns=''/>"), events)
581 iterparse(f, events)
590 context = iterparse(source, events)
[all …]
/external/python/cpython3/Lib/test/
Dtest_xml_etree.py530 iterparse = ET.iterparse
532 context = iterparse(SIMPLE_XMLFILE)
542 context = iterparse(SIMPLE_NS_XMLFILE)
551 context = iterparse(SIMPLE_XMLFILE, events)
555 context = iterparse(SIMPLE_XMLFILE, events=events)
559 context = iterparse(SIMPLE_XMLFILE, events)
572 context = iterparse(SIMPLE_NS_XMLFILE, events)
589 context = iterparse(io.StringIO(r"<root xmlns=''/>"), events)
596 iterparse(f, events)
602 iterparse(SIMPLE_XMLFILE, events)
[all …]
Dtest_xml_etree_c.py142 parser = cET.iterparse(io.StringIO(XML))
/external/python/cpython3/Doc/library/
Dxml.etree.elementtree.rst163 at :func:`iterparse`. It can be useful when you're reading a large XML document
517 .. function:: iterparse(source, events=None, parser=None)
530 Note that while :func:`iterparse` builds the tree incrementally, it issues
537 :func:`iterparse` only guarantees that it has seen the ">" character of a
/external/python/cpython2/Misc/NEWS.d/
D2.7.12rc1.rst728 Fixed possible use after free in ElementTree.iterparse().
816 Fixed file leak in ElementTree.iterparse() raising an error.
D2.7.3rc1.rst719 preserve iterparse events in case of SyntaxError.
748 close source files on ElementTree.parse and iterparse.
/external/python/cpython2/Doc/library/
Dxml.etree.elementtree.rst481 .. function:: iterparse(source, events=None, parser=None)
493 :func:`iterparse` only guarantees that it has seen the ">"
/external/python/cpython3/Lib/xml/etree/
DElementTree.py1201 def iterparse(source, events=None, parser=None): function
/external/python/cpython2/Lib/xml/etree/
DElementTree.py1196 def iterparse(source, events=None, parser=None): function
/external/python/cpython3/Misc/NEWS.d/
D3.6.0a1.rst2239 Optimized ElementTree.iterparse(); it is now 2x faster. Optimized
2392 Fixed file leak in ElementTree.iterparse() raising an error.
D3.5.2rc1.rst1530 Fixed file leak in ElementTree.iterparse() raising an error.
/external/python/cpython3/Doc/whatsnew/
D3.4.rst2139 * The *parser* argument of :func:`xml.etree.ElementTree.iterparse` has
/external/python/cpython3/Misc/
DHISTORY276 - Issue #25688: Fixed file leak in ElementTree.iterparse() raising an error.
9070 - Issue #2892: preserve iterparse events in case of SyntaxError.