blob: 29ca5407f210b12c4818b90839d6999f7790a02d [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001
2:mod:`xml.parsers.expat` --- Fast XML parsing using Expat
3=========================================================
4
5.. module:: xml.parsers.expat
6 :synopsis: An interface to the Expat non-validating XML parser.
7.. moduleauthor:: Paul Prescod <paul@prescod.net>
8
9
Christian Heimes5b5e81c2007-12-31 16:14:33 +000010.. Markup notes:
11
12 Many of the attributes of the XMLParser objects are callbacks. Since
13 signature information must be presented, these are described using the method
14 directive. Since they are attributes which are set by client code, in-text
15 references to these attributes should be marked using the :member: role.
16
Georg Brandl116aa622007-08-15 14:28:22 +000017
Georg Brandl116aa622007-08-15 14:28:22 +000018.. index:: single: Expat
19
20The :mod:`xml.parsers.expat` module is a Python interface to the Expat
21non-validating XML parser. The module provides a single extension type,
22:class:`xmlparser`, that represents the current state of an XML parser. After
23an :class:`xmlparser` object has been created, various attributes of the object
24can be set to handler functions. When an XML document is then fed to the
25parser, the handler functions are called for the character data and markup in
26the XML document.
27
28.. index:: module: pyexpat
29
30This module uses the :mod:`pyexpat` module to provide access to the Expat
31parser. Direct use of the :mod:`pyexpat` module is deprecated.
32
33This module provides one exception and one type object:
34
35
36.. exception:: ExpatError
37
38 The exception raised when Expat reports an error. See section
39 :ref:`expaterror-objects` for more information on interpreting Expat errors.
40
41
42.. exception:: error
43
44 Alias for :exc:`ExpatError`.
45
46
47.. data:: XMLParserType
48
49 The type of the return values from the :func:`ParserCreate` function.
50
51The :mod:`xml.parsers.expat` module contains two functions:
52
53
54.. function:: ErrorString(errno)
55
56 Returns an explanatory string for a given error number *errno*.
57
58
59.. function:: ParserCreate([encoding[, namespace_separator]])
60
61 Creates and returns a new :class:`xmlparser` object. *encoding*, if specified,
62 must be a string naming the encoding used by the XML data. Expat doesn't
63 support as many encodings as Python does, and its repertoire of encodings can't
64 be extended; it supports UTF-8, UTF-16, ISO-8859-1 (Latin1), and ASCII. If
65 *encoding* is given it will override the implicit or explicit encoding of the
66 document.
67
68 Expat can optionally do XML namespace processing for you, enabled by providing a
69 value for *namespace_separator*. The value must be a one-character string; a
70 :exc:`ValueError` will be raised if the string has an illegal length (``None``
71 is considered the same as omission). When namespace processing is enabled,
72 element type names and attribute names that belong to a namespace will be
73 expanded. The element name passed to the element handlers
74 :attr:`StartElementHandler` and :attr:`EndElementHandler` will be the
75 concatenation of the namespace URI, the namespace separator character, and the
76 local part of the name. If the namespace separator is a zero byte (``chr(0)``)
77 then the namespace URI and the local part will be concatenated without any
78 separator.
79
80 For example, if *namespace_separator* is set to a space character (``' '``) and
81 the following document is parsed::
82
83 <?xml version="1.0"?>
84 <root xmlns = "http://default-namespace.org/"
85 xmlns:py = "http://www.python.org/ns/">
86 <py:elem1 />
87 <elem2 xmlns="" />
88 </root>
89
90 :attr:`StartElementHandler` will receive the following strings for each
91 element::
92
93 http://default-namespace.org/ root
94 http://www.python.org/ns/ elem1
95 elem2
96
97
98.. seealso::
99
100 `The Expat XML Parser <http://www.libexpat.org/>`_
101 Home page of the Expat project.
102
103
104.. _xmlparser-objects:
105
106XMLParser Objects
107-----------------
108
109:class:`xmlparser` objects have the following methods:
110
111
112.. method:: xmlparser.Parse(data[, isfinal])
113
114 Parses the contents of the string *data*, calling the appropriate handler
115 functions to process the parsed data. *isfinal* must be true on the final call
116 to this method. *data* can be the empty string at any time.
117
118
119.. method:: xmlparser.ParseFile(file)
120
121 Parse XML data reading from the object *file*. *file* only needs to provide
122 the ``read(nbytes)`` method, returning the empty string when there's no more
123 data.
124
125
126.. method:: xmlparser.SetBase(base)
127
128 Sets the base to be used for resolving relative URIs in system identifiers in
129 declarations. Resolving relative identifiers is left to the application: this
130 value will be passed through as the *base* argument to the
131 :func:`ExternalEntityRefHandler`, :func:`NotationDeclHandler`, and
132 :func:`UnparsedEntityDeclHandler` functions.
133
134
135.. method:: xmlparser.GetBase()
136
137 Returns a string containing the base set by a previous call to :meth:`SetBase`,
138 or ``None`` if :meth:`SetBase` hasn't been called.
139
140
141.. method:: xmlparser.GetInputContext()
142
143 Returns the input data that generated the current event as a string. The data is
144 in the encoding of the entity which contains the text. When called while an
145 event handler is not active, the return value is ``None``.
146
Georg Brandl116aa622007-08-15 14:28:22 +0000147
148.. method:: xmlparser.ExternalEntityParserCreate(context[, encoding])
149
150 Create a "child" parser which can be used to parse an external parsed entity
151 referred to by content parsed by the parent parser. The *context* parameter
152 should be the string passed to the :meth:`ExternalEntityRefHandler` handler
153 function, described below. The child parser is created with the
154 :attr:`ordered_attributes` and :attr:`specified_attributes` set to the values of
155 this parser.
156
157
158.. method:: xmlparser.UseForeignDTD([flag])
159
160 Calling this with a true value for *flag* (the default) will cause Expat to call
161 the :attr:`ExternalEntityRefHandler` with :const:`None` for all arguments to
162 allow an alternate DTD to be loaded. If the document does not contain a
163 document type declaration, the :attr:`ExternalEntityRefHandler` will still be
164 called, but the :attr:`StartDoctypeDeclHandler` and
165 :attr:`EndDoctypeDeclHandler` will not be called.
166
167 Passing a false value for *flag* will cancel a previous call that passed a true
168 value, but otherwise has no effect.
169
170 This method can only be called before the :meth:`Parse` or :meth:`ParseFile`
171 methods are called; calling it after either of those have been called causes
172 :exc:`ExpatError` to be raised with the :attr:`code` attribute set to
173 :const:`errors.XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING`.
174
Georg Brandl116aa622007-08-15 14:28:22 +0000175:class:`xmlparser` objects have the following attributes:
176
177
178.. attribute:: xmlparser.buffer_size
179
180 The size of the buffer used when :attr:`buffer_text` is true. This value cannot
181 be changed at this time.
182
Georg Brandl116aa622007-08-15 14:28:22 +0000183
184.. attribute:: xmlparser.buffer_text
185
186 Setting this to true causes the :class:`xmlparser` object to buffer textual
187 content returned by Expat to avoid multiple calls to the
188 :meth:`CharacterDataHandler` callback whenever possible. This can improve
189 performance substantially since Expat normally breaks character data into chunks
190 at every line ending. This attribute is false by default, and may be changed at
191 any time.
192
Georg Brandl116aa622007-08-15 14:28:22 +0000193
194.. attribute:: xmlparser.buffer_used
195
196 If :attr:`buffer_text` is enabled, the number of bytes stored in the buffer.
197 These bytes represent UTF-8 encoded text. This attribute has no meaningful
198 interpretation when :attr:`buffer_text` is false.
199
Georg Brandl116aa622007-08-15 14:28:22 +0000200
201.. attribute:: xmlparser.ordered_attributes
202
203 Setting this attribute to a non-zero integer causes the attributes to be
204 reported as a list rather than a dictionary. The attributes are presented in
205 the order found in the document text. For each attribute, two list entries are
206 presented: the attribute name and the attribute value. (Older versions of this
207 module also used this format.) By default, this attribute is false; it may be
208 changed at any time.
209
Georg Brandl116aa622007-08-15 14:28:22 +0000210
211.. attribute:: xmlparser.specified_attributes
212
213 If set to a non-zero integer, the parser will report only those attributes which
214 were specified in the document instance and not those which were derived from
215 attribute declarations. Applications which set this need to be especially
216 careful to use what additional information is available from the declarations as
217 needed to comply with the standards for the behavior of XML processors. By
218 default, this attribute is false; it may be changed at any time.
219
Georg Brandl116aa622007-08-15 14:28:22 +0000220
221The following attributes contain values relating to the most recent error
222encountered by an :class:`xmlparser` object, and will only have correct values
223once a call to :meth:`Parse` or :meth:`ParseFile` has raised a
224:exc:`xml.parsers.expat.ExpatError` exception.
225
226
227.. attribute:: xmlparser.ErrorByteIndex
228
229 Byte index at which an error occurred.
230
231
232.. attribute:: xmlparser.ErrorCode
233
234 Numeric code specifying the problem. This value can be passed to the
235 :func:`ErrorString` function, or compared to one of the constants defined in the
236 ``errors`` object.
237
238
239.. attribute:: xmlparser.ErrorColumnNumber
240
241 Column number at which an error occurred.
242
243
244.. attribute:: xmlparser.ErrorLineNumber
245
246 Line number at which an error occurred.
247
248The following attributes contain values relating to the current parse location
249in an :class:`xmlparser` object. During a callback reporting a parse event they
250indicate the location of the first of the sequence of characters that generated
251the event. When called outside of a callback, the position indicated will be
252just past the last parse event (regardless of whether there was an associated
253callback).
254
Georg Brandl116aa622007-08-15 14:28:22 +0000255
256.. attribute:: xmlparser.CurrentByteIndex
257
258 Current byte index in the parser input.
259
260
261.. attribute:: xmlparser.CurrentColumnNumber
262
263 Current column number in the parser input.
264
265
266.. attribute:: xmlparser.CurrentLineNumber
267
268 Current line number in the parser input.
269
270Here is the list of handlers that can be set. To set a handler on an
271:class:`xmlparser` object *o*, use ``o.handlername = func``. *handlername* must
272be taken from the following list, and *func* must be a callable object accepting
273the correct number of arguments. The arguments are all strings, unless
274otherwise stated.
275
276
277.. method:: xmlparser.XmlDeclHandler(version, encoding, standalone)
278
279 Called when the XML declaration is parsed. The XML declaration is the
280 (optional) declaration of the applicable version of the XML recommendation, the
281 encoding of the document text, and an optional "standalone" declaration.
282 *version* and *encoding* will be strings, and *standalone* will be ``1`` if the
283 document is declared standalone, ``0`` if it is declared not to be standalone,
284 or ``-1`` if the standalone clause was omitted. This is only available with
285 Expat version 1.95.0 or newer.
286
Georg Brandl116aa622007-08-15 14:28:22 +0000287
288.. method:: xmlparser.StartDoctypeDeclHandler(doctypeName, systemId, publicId, has_internal_subset)
289
290 Called when Expat begins parsing the document type declaration (``<!DOCTYPE
291 ...``). The *doctypeName* is provided exactly as presented. The *systemId* and
292 *publicId* parameters give the system and public identifiers if specified, or
293 ``None`` if omitted. *has_internal_subset* will be true if the document
294 contains and internal document declaration subset. This requires Expat version
295 1.2 or newer.
296
297
298.. method:: xmlparser.EndDoctypeDeclHandler()
299
300 Called when Expat is done parsing the document type declaration. This requires
301 Expat version 1.2 or newer.
302
303
304.. method:: xmlparser.ElementDeclHandler(name, model)
305
306 Called once for each element type declaration. *name* is the name of the
307 element type, and *model* is a representation of the content model.
308
309
310.. method:: xmlparser.AttlistDeclHandler(elname, attname, type, default, required)
311
312 Called for each declared attribute for an element type. If an attribute list
313 declaration declares three attributes, this handler is called three times, once
314 for each attribute. *elname* is the name of the element to which the
315 declaration applies and *attname* is the name of the attribute declared. The
316 attribute type is a string passed as *type*; the possible values are
317 ``'CDATA'``, ``'ID'``, ``'IDREF'``, ... *default* gives the default value for
318 the attribute used when the attribute is not specified by the document instance,
319 or ``None`` if there is no default value (``#IMPLIED`` values). If the
320 attribute is required to be given in the document instance, *required* will be
321 true. This requires Expat version 1.95.0 or newer.
322
323
324.. method:: xmlparser.StartElementHandler(name, attributes)
325
326 Called for the start of every element. *name* is a string containing the
327 element name, and *attributes* is a dictionary mapping attribute names to their
328 values.
329
330
331.. method:: xmlparser.EndElementHandler(name)
332
333 Called for the end of every element.
334
335
336.. method:: xmlparser.ProcessingInstructionHandler(target, data)
337
338 Called for every processing instruction.
339
340
341.. method:: xmlparser.CharacterDataHandler(data)
342
343 Called for character data. This will be called for normal character data, CDATA
344 marked content, and ignorable whitespace. Applications which must distinguish
345 these cases can use the :attr:`StartCdataSectionHandler`,
346 :attr:`EndCdataSectionHandler`, and :attr:`ElementDeclHandler` callbacks to
347 collect the required information.
348
349
350.. method:: xmlparser.UnparsedEntityDeclHandler(entityName, base, systemId, publicId, notationName)
351
352 Called for unparsed (NDATA) entity declarations. This is only present for
353 version 1.2 of the Expat library; for more recent versions, use
354 :attr:`EntityDeclHandler` instead. (The underlying function in the Expat
355 library has been declared obsolete.)
356
357
358.. method:: xmlparser.EntityDeclHandler(entityName, is_parameter_entity, value, base, systemId, publicId, notationName)
359
360 Called for all entity declarations. For parameter and internal entities,
361 *value* will be a string giving the declared contents of the entity; this will
362 be ``None`` for external entities. The *notationName* parameter will be
363 ``None`` for parsed entities, and the name of the notation for unparsed
364 entities. *is_parameter_entity* will be true if the entity is a parameter entity
365 or false for general entities (most applications only need to be concerned with
366 general entities). This is only available starting with version 1.95.0 of the
367 Expat library.
368
Georg Brandl116aa622007-08-15 14:28:22 +0000369
370.. method:: xmlparser.NotationDeclHandler(notationName, base, systemId, publicId)
371
372 Called for notation declarations. *notationName*, *base*, and *systemId*, and
373 *publicId* are strings if given. If the public identifier is omitted,
374 *publicId* will be ``None``.
375
376
377.. method:: xmlparser.StartNamespaceDeclHandler(prefix, uri)
378
379 Called when an element contains a namespace declaration. Namespace declarations
380 are processed before the :attr:`StartElementHandler` is called for the element
381 on which declarations are placed.
382
383
384.. method:: xmlparser.EndNamespaceDeclHandler(prefix)
385
386 Called when the closing tag is reached for an element that contained a
387 namespace declaration. This is called once for each namespace declaration on
388 the element in the reverse of the order for which the
389 :attr:`StartNamespaceDeclHandler` was called to indicate the start of each
390 namespace declaration's scope. Calls to this handler are made after the
391 corresponding :attr:`EndElementHandler` for the end of the element.
392
393
394.. method:: xmlparser.CommentHandler(data)
395
396 Called for comments. *data* is the text of the comment, excluding the leading
397 '``<!-``\ ``-``' and trailing '``-``\ ``->``'.
398
399
400.. method:: xmlparser.StartCdataSectionHandler()
401
402 Called at the start of a CDATA section. This and :attr:`EndCdataSectionHandler`
403 are needed to be able to identify the syntactical start and end for CDATA
404 sections.
405
406
407.. method:: xmlparser.EndCdataSectionHandler()
408
409 Called at the end of a CDATA section.
410
411
412.. method:: xmlparser.DefaultHandler(data)
413
414 Called for any characters in the XML document for which no applicable handler
415 has been specified. This means characters that are part of a construct which
416 could be reported, but for which no handler has been supplied.
417
418
419.. method:: xmlparser.DefaultHandlerExpand(data)
420
421 This is the same as the :func:`DefaultHandler`, but doesn't inhibit expansion
422 of internal entities. The entity reference will not be passed to the default
423 handler.
424
425
426.. method:: xmlparser.NotStandaloneHandler()
427
428 Called if the XML document hasn't been declared as being a standalone document.
429 This happens when there is an external subset or a reference to a parameter
430 entity, but the XML declaration does not set standalone to ``yes`` in an XML
431 declaration. If this handler returns ``0``, then the parser will throw an
432 :const:`XML_ERROR_NOT_STANDALONE` error. If this handler is not set, no
433 exception is raised by the parser for this condition.
434
435
436.. method:: xmlparser.ExternalEntityRefHandler(context, base, systemId, publicId)
437
438 Called for references to external entities. *base* is the current base, as set
439 by a previous call to :meth:`SetBase`. The public and system identifiers,
440 *systemId* and *publicId*, are strings if given; if the public identifier is not
441 given, *publicId* will be ``None``. The *context* value is opaque and should
442 only be used as described below.
443
444 For external entities to be parsed, this handler must be implemented. It is
445 responsible for creating the sub-parser using
446 ``ExternalEntityParserCreate(context)``, initializing it with the appropriate
447 callbacks, and parsing the entity. This handler should return an integer; if it
448 returns ``0``, the parser will throw an
449 :const:`XML_ERROR_EXTERNAL_ENTITY_HANDLING` error, otherwise parsing will
450 continue.
451
452 If this handler is not provided, external entities are reported by the
453 :attr:`DefaultHandler` callback, if provided.
454
455
456.. _expaterror-objects:
457
458ExpatError Exceptions
459---------------------
460
461.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
462
463
464:exc:`ExpatError` exceptions have a number of interesting attributes:
465
466
467.. attribute:: ExpatError.code
468
469 Expat's internal error number for the specific error. This will match one of
470 the constants defined in the ``errors`` object from this module.
471
Georg Brandl116aa622007-08-15 14:28:22 +0000472
473.. attribute:: ExpatError.lineno
474
475 Line number on which the error was detected. The first line is numbered ``1``.
476
Georg Brandl116aa622007-08-15 14:28:22 +0000477
478.. attribute:: ExpatError.offset
479
480 Character offset into the line where the error occurred. The first column is
481 numbered ``0``.
482
Georg Brandl116aa622007-08-15 14:28:22 +0000483
484.. _expat-example:
485
486Example
487-------
488
489The following program defines three handlers that just print out their
490arguments. ::
491
492 import xml.parsers.expat
493
494 # 3 handler functions
495 def start_element(name, attrs):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000496 print('Start element:', name, attrs)
Georg Brandl116aa622007-08-15 14:28:22 +0000497 def end_element(name):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000498 print('End element:', name)
Georg Brandl116aa622007-08-15 14:28:22 +0000499 def char_data(data):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000500 print('Character data:', repr(data))
Georg Brandl116aa622007-08-15 14:28:22 +0000501
502 p = xml.parsers.expat.ParserCreate()
503
504 p.StartElementHandler = start_element
505 p.EndElementHandler = end_element
506 p.CharacterDataHandler = char_data
507
508 p.Parse("""<?xml version="1.0"?>
509 <parent id="top"><child1 name="paul">Text goes here</child1>
510 <child2 name="fred">More text</child2>
511 </parent>""", 1)
512
513The output from this program is::
514
515 Start element: parent {'id': 'top'}
516 Start element: child1 {'name': 'paul'}
517 Character data: 'Text goes here'
518 End element: child1
519 Character data: '\n'
520 Start element: child2 {'name': 'fred'}
521 Character data: 'More text'
522 End element: child2
523 Character data: '\n'
524 End element: parent
525
526
527.. _expat-content-models:
528
529Content Model Descriptions
530--------------------------
531
532.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
533
534
535Content modules are described using nested tuples. Each tuple contains four
536values: the type, the quantifier, the name, and a tuple of children. Children
537are simply additional content module descriptions.
538
539The values of the first two fields are constants defined in the ``model`` object
540of the :mod:`xml.parsers.expat` module. These constants can be collected in two
541groups: the model type group and the quantifier group.
542
543The constants in the model type group are:
544
545
546.. data:: XML_CTYPE_ANY
547 :noindex:
548
549 The element named by the model name was declared to have a content model of
550 ``ANY``.
551
552
553.. data:: XML_CTYPE_CHOICE
554 :noindex:
555
556 The named element allows a choice from a number of options; this is used for
557 content models such as ``(A | B | C)``.
558
559
560.. data:: XML_CTYPE_EMPTY
561 :noindex:
562
563 Elements which are declared to be ``EMPTY`` have this model type.
564
565
566.. data:: XML_CTYPE_MIXED
567 :noindex:
568
569
570.. data:: XML_CTYPE_NAME
571 :noindex:
572
573
574.. data:: XML_CTYPE_SEQ
575 :noindex:
576
577 Models which represent a series of models which follow one after the other are
578 indicated with this model type. This is used for models such as ``(A, B, C)``.
579
580The constants in the quantifier group are:
581
582
583.. data:: XML_CQUANT_NONE
584 :noindex:
585
586 No modifier is given, so it can appear exactly once, as for ``A``.
587
588
589.. data:: XML_CQUANT_OPT
590 :noindex:
591
592 The model is optional: it can appear once or not at all, as for ``A?``.
593
594
595.. data:: XML_CQUANT_PLUS
596 :noindex:
597
598 The model must occur one or more times (like ``A+``).
599
600
601.. data:: XML_CQUANT_REP
602 :noindex:
603
604 The model must occur zero or more times, as for ``A*``.
605
606
607.. _expat-errors:
608
609Expat error constants
610---------------------
611
612The following constants are provided in the ``errors`` object of the
613:mod:`xml.parsers.expat` module. These constants are useful in interpreting
614some of the attributes of the :exc:`ExpatError` exception objects raised when an
615error has occurred.
616
617The ``errors`` object has the following attributes:
618
619
620.. data:: XML_ERROR_ASYNC_ENTITY
621 :noindex:
622
623
624.. data:: XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF
625 :noindex:
626
627 An entity reference in an attribute value referred to an external entity instead
628 of an internal entity.
629
630
631.. data:: XML_ERROR_BAD_CHAR_REF
632 :noindex:
633
634 A character reference referred to a character which is illegal in XML (for
635 example, character ``0``, or '``&#0;``').
636
637
638.. data:: XML_ERROR_BINARY_ENTITY_REF
639 :noindex:
640
641 An entity reference referred to an entity which was declared with a notation, so
642 cannot be parsed.
643
644
645.. data:: XML_ERROR_DUPLICATE_ATTRIBUTE
646 :noindex:
647
648 An attribute was used more than once in a start tag.
649
650
651.. data:: XML_ERROR_INCORRECT_ENCODING
652 :noindex:
653
654
655.. data:: XML_ERROR_INVALID_TOKEN
656 :noindex:
657
658 Raised when an input byte could not properly be assigned to a character; for
659 example, a NUL byte (value ``0``) in a UTF-8 input stream.
660
661
662.. data:: XML_ERROR_JUNK_AFTER_DOC_ELEMENT
663 :noindex:
664
665 Something other than whitespace occurred after the document element.
666
667
668.. data:: XML_ERROR_MISPLACED_XML_PI
669 :noindex:
670
671 An XML declaration was found somewhere other than the start of the input data.
672
673
674.. data:: XML_ERROR_NO_ELEMENTS
675 :noindex:
676
677 The document contains no elements (XML requires all documents to contain exactly
678 one top-level element)..
679
680
681.. data:: XML_ERROR_NO_MEMORY
682 :noindex:
683
684 Expat was not able to allocate memory internally.
685
686
687.. data:: XML_ERROR_PARAM_ENTITY_REF
688 :noindex:
689
690 A parameter entity reference was found where it was not allowed.
691
692
693.. data:: XML_ERROR_PARTIAL_CHAR
694 :noindex:
695
696 An incomplete character was found in the input.
697
698
699.. data:: XML_ERROR_RECURSIVE_ENTITY_REF
700 :noindex:
701
702 An entity reference contained another reference to the same entity; possibly via
703 a different name, and possibly indirectly.
704
705
706.. data:: XML_ERROR_SYNTAX
707 :noindex:
708
709 Some unspecified syntax error was encountered.
710
711
712.. data:: XML_ERROR_TAG_MISMATCH
713 :noindex:
714
715 An end tag did not match the innermost open start tag.
716
717
718.. data:: XML_ERROR_UNCLOSED_TOKEN
719 :noindex:
720
721 Some token (such as a start tag) was not closed before the end of the stream or
722 the next token was encountered.
723
724
725.. data:: XML_ERROR_UNDEFINED_ENTITY
726 :noindex:
727
728 A reference was made to a entity which was not defined.
729
730
731.. data:: XML_ERROR_UNKNOWN_ENCODING
732 :noindex:
733
734 The document encoding is not supported by Expat.
735
736
737.. data:: XML_ERROR_UNCLOSED_CDATA_SECTION
738 :noindex:
739
740 A CDATA marked section was not closed.
741
742
743.. data:: XML_ERROR_EXTERNAL_ENTITY_HANDLING
744 :noindex:
745
746
747.. data:: XML_ERROR_NOT_STANDALONE
748 :noindex:
749
750 The parser determined that the document was not "standalone" though it declared
751 itself to be in the XML declaration, and the :attr:`NotStandaloneHandler` was
752 set and returned ``0``.
753
754
755.. data:: XML_ERROR_UNEXPECTED_STATE
756 :noindex:
757
758
759.. data:: XML_ERROR_ENTITY_DECLARED_IN_PE
760 :noindex:
761
762
763.. data:: XML_ERROR_FEATURE_REQUIRES_XML_DTD
764 :noindex:
765
766 An operation was requested that requires DTD support to be compiled in, but
767 Expat was configured without DTD support. This should never be reported by a
768 standard build of the :mod:`xml.parsers.expat` module.
769
770
771.. data:: XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING
772 :noindex:
773
774 A behavioral change was requested after parsing started that can only be changed
775 before parsing has started. This is (currently) only raised by
776 :meth:`UseForeignDTD`.
777
778
779.. data:: XML_ERROR_UNBOUND_PREFIX
780 :noindex:
781
782 An undeclared prefix was found when namespace processing was enabled.
783
784
785.. data:: XML_ERROR_UNDECLARING_PREFIX
786 :noindex:
787
788 The document attempted to remove the namespace declaration associated with a
789 prefix.
790
791
792.. data:: XML_ERROR_INCOMPLETE_PE
793 :noindex:
794
795 A parameter entity contained incomplete markup.
796
797
798.. data:: XML_ERROR_XML_DECL
799 :noindex:
800
801 The document contained no document element at all.
802
803
804.. data:: XML_ERROR_TEXT_DECL
805 :noindex:
806
807 There was an error parsing a text declaration in an external entity.
808
809
810.. data:: XML_ERROR_PUBLICID
811 :noindex:
812
813 Characters were found in the public id that are not allowed.
814
815
816.. data:: XML_ERROR_SUSPENDED
817 :noindex:
818
819 The requested operation was made on a suspended parser, but isn't allowed. This
820 includes attempts to provide additional input or to stop the parser.
821
822
823.. data:: XML_ERROR_NOT_SUSPENDED
824 :noindex:
825
826 An attempt to resume the parser was made when the parser had not been suspended.
827
828
829.. data:: XML_ERROR_ABORTED
830 :noindex:
831
832 This should not be reported to Python applications.
833
834
835.. data:: XML_ERROR_FINISHED
836 :noindex:
837
838 The requested operation was made on a parser which was finished parsing input,
839 but isn't allowed. This includes attempts to provide additional input or to
840 stop the parser.
841
842
843.. data:: XML_ERROR_SUSPEND_PE
844 :noindex:
845