Lines Matching full:expat

2 :mod:`xml.parsers.expat` --- Fast XML parsing using Expat
5 .. module:: xml.parsers.expat
6 :synopsis: An interface to the Expat non-validating XML parser.
27 .. index:: single: Expat
29 The :mod:`xml.parsers.expat` module is a Python interface to the Expat
39 This module uses the :mod:`pyexpat` module to provide access to the Expat
47 The exception raised when Expat reports an error. See section
48 :ref:`expaterror-objects` for more information on interpreting Expat errors.
60 The :mod:`xml.parsers.expat` module contains two functions:
71 must be a string naming the encoding used by the XML data. Expat doesn't
77 Expat can optionally do XML namespace processing for you, enabled by providing a
108 Due to limitations in the ``Expat`` library used by :mod:`pyexpat`,
115 `The Expat XML Parser <http://www.libexpat.org/>`_
116 Home page of the Expat project.
186 Calling this with a true value for *flag* (the default) will cause Expat to call
221 content returned by Expat to avoid multiple calls to the
223 performance substantially since Expat normally breaks character data into chunks
276 :exc:`xml.parsers.expat.ExpatError` exception.
340 Expat version 1.95.0 or newer.
347 Called when Expat begins parsing the document type declaration (``<!DOCTYPE
351 contains and internal document declaration subset. This requires Expat version
357 Called when Expat is done parsing the document type declaration. This requires
358 Expat version 1.2 or newer.
378 true. This requires Expat version 1.95.0 or newer.
410 version 1.2 of the Expat library; for more recent versions, use
411 :attr:`EntityDeclHandler` instead. (The underlying function in the Expat
424 Expat library.
528 Expat's internal error number for the specific error. This will match one of
557 import xml.parsers.expat
567 p = xml.parsers.expat.ParserCreate()
605 of the :mod:`xml.parsers.expat` module. These constants can be collected in two
674 Expat error constants
678 :mod:`xml.parsers.expat` module. These constants are useful in interpreting
749 Expat was not able to allocate memory internally.
799 The document encoding is not supported by Expat.
832 Expat was configured without DTD support. This should never be reported by a
833 standard build of the :mod:`xml.parsers.expat` module.