blob: e19a4d5852f383a2e947286f2bab852ffa1ef43a [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
Christian Heimesb186d002008-03-18 15:15:01 +000065 *encoding* [1]_ is given it will override the implicit or explicit encoding of the
Georg Brandl116aa622007-08-15 14:28:22 +000066 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
Christian Heimes2380ac72008-01-09 00:17:24 +0000180 The size of the buffer used when :attr:`buffer_text` is true.
181 A new buffer size can be set by assigning a new integer value
182 to this attribute.
183 When the size is changed, the buffer will be flushed.
184
185 .. versionchanged:: 2.6
186 The buffer size can now be changed.
Georg Brandl116aa622007-08-15 14:28:22 +0000187
Georg Brandl116aa622007-08-15 14:28:22 +0000188
189.. attribute:: xmlparser.buffer_text
190
191 Setting this to true causes the :class:`xmlparser` object to buffer textual
192 content returned by Expat to avoid multiple calls to the
193 :meth:`CharacterDataHandler` callback whenever possible. This can improve
194 performance substantially since Expat normally breaks character data into chunks
195 at every line ending. This attribute is false by default, and may be changed at
196 any time.
197
Georg Brandl116aa622007-08-15 14:28:22 +0000198
199.. attribute:: xmlparser.buffer_used
200
201 If :attr:`buffer_text` is enabled, the number of bytes stored in the buffer.
202 These bytes represent UTF-8 encoded text. This attribute has no meaningful
203 interpretation when :attr:`buffer_text` is false.
204
Georg Brandl116aa622007-08-15 14:28:22 +0000205
206.. attribute:: xmlparser.ordered_attributes
207
208 Setting this attribute to a non-zero integer causes the attributes to be
209 reported as a list rather than a dictionary. The attributes are presented in
210 the order found in the document text. For each attribute, two list entries are
211 presented: the attribute name and the attribute value. (Older versions of this
212 module also used this format.) By default, this attribute is false; it may be
213 changed at any time.
214
Georg Brandl116aa622007-08-15 14:28:22 +0000215
216.. attribute:: xmlparser.specified_attributes
217
218 If set to a non-zero integer, the parser will report only those attributes which
219 were specified in the document instance and not those which were derived from
220 attribute declarations. Applications which set this need to be especially
221 careful to use what additional information is available from the declarations as
222 needed to comply with the standards for the behavior of XML processors. By
223 default, this attribute is false; it may be changed at any time.
224
Georg Brandl116aa622007-08-15 14:28:22 +0000225
226The following attributes contain values relating to the most recent error
227encountered by an :class:`xmlparser` object, and will only have correct values
228once a call to :meth:`Parse` or :meth:`ParseFile` has raised a
229:exc:`xml.parsers.expat.ExpatError` exception.
230
231
232.. attribute:: xmlparser.ErrorByteIndex
233
234 Byte index at which an error occurred.
235
236
237.. attribute:: xmlparser.ErrorCode
238
239 Numeric code specifying the problem. This value can be passed to the
240 :func:`ErrorString` function, or compared to one of the constants defined in the
241 ``errors`` object.
242
243
244.. attribute:: xmlparser.ErrorColumnNumber
245
246 Column number at which an error occurred.
247
248
249.. attribute:: xmlparser.ErrorLineNumber
250
251 Line number at which an error occurred.
252
253The following attributes contain values relating to the current parse location
254in an :class:`xmlparser` object. During a callback reporting a parse event they
255indicate the location of the first of the sequence of characters that generated
256the event. When called outside of a callback, the position indicated will be
257just past the last parse event (regardless of whether there was an associated
258callback).
259
Georg Brandl116aa622007-08-15 14:28:22 +0000260
261.. attribute:: xmlparser.CurrentByteIndex
262
263 Current byte index in the parser input.
264
265
266.. attribute:: xmlparser.CurrentColumnNumber
267
268 Current column number in the parser input.
269
270
271.. attribute:: xmlparser.CurrentLineNumber
272
273 Current line number in the parser input.
274
275Here is the list of handlers that can be set. To set a handler on an
276:class:`xmlparser` object *o*, use ``o.handlername = func``. *handlername* must
277be taken from the following list, and *func* must be a callable object accepting
278the correct number of arguments. The arguments are all strings, unless
279otherwise stated.
280
281
282.. method:: xmlparser.XmlDeclHandler(version, encoding, standalone)
283
284 Called when the XML declaration is parsed. The XML declaration is the
285 (optional) declaration of the applicable version of the XML recommendation, the
286 encoding of the document text, and an optional "standalone" declaration.
287 *version* and *encoding* will be strings, and *standalone* will be ``1`` if the
288 document is declared standalone, ``0`` if it is declared not to be standalone,
289 or ``-1`` if the standalone clause was omitted. This is only available with
290 Expat version 1.95.0 or newer.
291
Georg Brandl116aa622007-08-15 14:28:22 +0000292
293.. method:: xmlparser.StartDoctypeDeclHandler(doctypeName, systemId, publicId, has_internal_subset)
294
295 Called when Expat begins parsing the document type declaration (``<!DOCTYPE
296 ...``). The *doctypeName* is provided exactly as presented. The *systemId* and
297 *publicId* parameters give the system and public identifiers if specified, or
298 ``None`` if omitted. *has_internal_subset* will be true if the document
299 contains and internal document declaration subset. This requires Expat version
300 1.2 or newer.
301
302
303.. method:: xmlparser.EndDoctypeDeclHandler()
304
305 Called when Expat is done parsing the document type declaration. This requires
306 Expat version 1.2 or newer.
307
308
309.. method:: xmlparser.ElementDeclHandler(name, model)
310
311 Called once for each element type declaration. *name* is the name of the
312 element type, and *model* is a representation of the content model.
313
314
315.. method:: xmlparser.AttlistDeclHandler(elname, attname, type, default, required)
316
317 Called for each declared attribute for an element type. If an attribute list
318 declaration declares three attributes, this handler is called three times, once
319 for each attribute. *elname* is the name of the element to which the
320 declaration applies and *attname* is the name of the attribute declared. The
321 attribute type is a string passed as *type*; the possible values are
322 ``'CDATA'``, ``'ID'``, ``'IDREF'``, ... *default* gives the default value for
323 the attribute used when the attribute is not specified by the document instance,
324 or ``None`` if there is no default value (``#IMPLIED`` values). If the
325 attribute is required to be given in the document instance, *required* will be
326 true. This requires Expat version 1.95.0 or newer.
327
328
329.. method:: xmlparser.StartElementHandler(name, attributes)
330
331 Called for the start of every element. *name* is a string containing the
332 element name, and *attributes* is a dictionary mapping attribute names to their
333 values.
334
335
336.. method:: xmlparser.EndElementHandler(name)
337
338 Called for the end of every element.
339
340
341.. method:: xmlparser.ProcessingInstructionHandler(target, data)
342
343 Called for every processing instruction.
344
345
346.. method:: xmlparser.CharacterDataHandler(data)
347
348 Called for character data. This will be called for normal character data, CDATA
349 marked content, and ignorable whitespace. Applications which must distinguish
350 these cases can use the :attr:`StartCdataSectionHandler`,
351 :attr:`EndCdataSectionHandler`, and :attr:`ElementDeclHandler` callbacks to
352 collect the required information.
353
354
355.. method:: xmlparser.UnparsedEntityDeclHandler(entityName, base, systemId, publicId, notationName)
356
357 Called for unparsed (NDATA) entity declarations. This is only present for
358 version 1.2 of the Expat library; for more recent versions, use
359 :attr:`EntityDeclHandler` instead. (The underlying function in the Expat
360 library has been declared obsolete.)
361
362
363.. method:: xmlparser.EntityDeclHandler(entityName, is_parameter_entity, value, base, systemId, publicId, notationName)
364
365 Called for all entity declarations. For parameter and internal entities,
366 *value* will be a string giving the declared contents of the entity; this will
367 be ``None`` for external entities. The *notationName* parameter will be
368 ``None`` for parsed entities, and the name of the notation for unparsed
369 entities. *is_parameter_entity* will be true if the entity is a parameter entity
370 or false for general entities (most applications only need to be concerned with
371 general entities). This is only available starting with version 1.95.0 of the
372 Expat library.
373
Georg Brandl116aa622007-08-15 14:28:22 +0000374
375.. method:: xmlparser.NotationDeclHandler(notationName, base, systemId, publicId)
376
377 Called for notation declarations. *notationName*, *base*, and *systemId*, and
378 *publicId* are strings if given. If the public identifier is omitted,
379 *publicId* will be ``None``.
380
381
382.. method:: xmlparser.StartNamespaceDeclHandler(prefix, uri)
383
384 Called when an element contains a namespace declaration. Namespace declarations
385 are processed before the :attr:`StartElementHandler` is called for the element
386 on which declarations are placed.
387
388
389.. method:: xmlparser.EndNamespaceDeclHandler(prefix)
390
391 Called when the closing tag is reached for an element that contained a
392 namespace declaration. This is called once for each namespace declaration on
393 the element in the reverse of the order for which the
394 :attr:`StartNamespaceDeclHandler` was called to indicate the start of each
395 namespace declaration's scope. Calls to this handler are made after the
396 corresponding :attr:`EndElementHandler` for the end of the element.
397
398
399.. method:: xmlparser.CommentHandler(data)
400
401 Called for comments. *data* is the text of the comment, excluding the leading
402 '``<!-``\ ``-``' and trailing '``-``\ ``->``'.
403
404
405.. method:: xmlparser.StartCdataSectionHandler()
406
407 Called at the start of a CDATA section. This and :attr:`EndCdataSectionHandler`
408 are needed to be able to identify the syntactical start and end for CDATA
409 sections.
410
411
412.. method:: xmlparser.EndCdataSectionHandler()
413
414 Called at the end of a CDATA section.
415
416
417.. method:: xmlparser.DefaultHandler(data)
418
419 Called for any characters in the XML document for which no applicable handler
420 has been specified. This means characters that are part of a construct which
421 could be reported, but for which no handler has been supplied.
422
423
424.. method:: xmlparser.DefaultHandlerExpand(data)
425
426 This is the same as the :func:`DefaultHandler`, but doesn't inhibit expansion
427 of internal entities. The entity reference will not be passed to the default
428 handler.
429
430
431.. method:: xmlparser.NotStandaloneHandler()
432
433 Called if the XML document hasn't been declared as being a standalone document.
434 This happens when there is an external subset or a reference to a parameter
435 entity, but the XML declaration does not set standalone to ``yes`` in an XML
436 declaration. If this handler returns ``0``, then the parser will throw an
437 :const:`XML_ERROR_NOT_STANDALONE` error. If this handler is not set, no
438 exception is raised by the parser for this condition.
439
440
441.. method:: xmlparser.ExternalEntityRefHandler(context, base, systemId, publicId)
442
443 Called for references to external entities. *base* is the current base, as set
444 by a previous call to :meth:`SetBase`. The public and system identifiers,
445 *systemId* and *publicId*, are strings if given; if the public identifier is not
446 given, *publicId* will be ``None``. The *context* value is opaque and should
447 only be used as described below.
448
449 For external entities to be parsed, this handler must be implemented. It is
450 responsible for creating the sub-parser using
451 ``ExternalEntityParserCreate(context)``, initializing it with the appropriate
452 callbacks, and parsing the entity. This handler should return an integer; if it
453 returns ``0``, the parser will throw an
454 :const:`XML_ERROR_EXTERNAL_ENTITY_HANDLING` error, otherwise parsing will
455 continue.
456
457 If this handler is not provided, external entities are reported by the
458 :attr:`DefaultHandler` callback, if provided.
459
460
461.. _expaterror-objects:
462
463ExpatError Exceptions
464---------------------
465
466.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
467
468
469:exc:`ExpatError` exceptions have a number of interesting attributes:
470
471
472.. attribute:: ExpatError.code
473
474 Expat's internal error number for the specific error. This will match one of
475 the constants defined in the ``errors`` object from this module.
476
Georg Brandl116aa622007-08-15 14:28:22 +0000477
478.. attribute:: ExpatError.lineno
479
480 Line number on which the error was detected. The first line is numbered ``1``.
481
Georg Brandl116aa622007-08-15 14:28:22 +0000482
483.. attribute:: ExpatError.offset
484
485 Character offset into the line where the error occurred. The first column is
486 numbered ``0``.
487
Georg Brandl116aa622007-08-15 14:28:22 +0000488
489.. _expat-example:
490
491Example
492-------
493
494The following program defines three handlers that just print out their
495arguments. ::
496
497 import xml.parsers.expat
498
499 # 3 handler functions
500 def start_element(name, attrs):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000501 print('Start element:', name, attrs)
Georg Brandl116aa622007-08-15 14:28:22 +0000502 def end_element(name):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000503 print('End element:', name)
Georg Brandl116aa622007-08-15 14:28:22 +0000504 def char_data(data):
Georg Brandl6911e3c2007-09-04 07:15:32 +0000505 print('Character data:', repr(data))
Georg Brandl116aa622007-08-15 14:28:22 +0000506
507 p = xml.parsers.expat.ParserCreate()
508
509 p.StartElementHandler = start_element
510 p.EndElementHandler = end_element
511 p.CharacterDataHandler = char_data
512
513 p.Parse("""<?xml version="1.0"?>
514 <parent id="top"><child1 name="paul">Text goes here</child1>
515 <child2 name="fred">More text</child2>
516 </parent>""", 1)
517
518The output from this program is::
519
520 Start element: parent {'id': 'top'}
521 Start element: child1 {'name': 'paul'}
522 Character data: 'Text goes here'
523 End element: child1
524 Character data: '\n'
525 Start element: child2 {'name': 'fred'}
526 Character data: 'More text'
527 End element: child2
528 Character data: '\n'
529 End element: parent
530
531
532.. _expat-content-models:
533
534Content Model Descriptions
535--------------------------
536
537.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
538
539
540Content modules are described using nested tuples. Each tuple contains four
541values: the type, the quantifier, the name, and a tuple of children. Children
542are simply additional content module descriptions.
543
544The values of the first two fields are constants defined in the ``model`` object
545of the :mod:`xml.parsers.expat` module. These constants can be collected in two
546groups: the model type group and the quantifier group.
547
548The constants in the model type group are:
549
550
551.. data:: XML_CTYPE_ANY
552 :noindex:
553
554 The element named by the model name was declared to have a content model of
555 ``ANY``.
556
557
558.. data:: XML_CTYPE_CHOICE
559 :noindex:
560
561 The named element allows a choice from a number of options; this is used for
562 content models such as ``(A | B | C)``.
563
564
565.. data:: XML_CTYPE_EMPTY
566 :noindex:
567
568 Elements which are declared to be ``EMPTY`` have this model type.
569
570
571.. data:: XML_CTYPE_MIXED
572 :noindex:
573
574
575.. data:: XML_CTYPE_NAME
576 :noindex:
577
578
579.. data:: XML_CTYPE_SEQ
580 :noindex:
581
582 Models which represent a series of models which follow one after the other are
583 indicated with this model type. This is used for models such as ``(A, B, C)``.
584
585The constants in the quantifier group are:
586
587
588.. data:: XML_CQUANT_NONE
589 :noindex:
590
591 No modifier is given, so it can appear exactly once, as for ``A``.
592
593
594.. data:: XML_CQUANT_OPT
595 :noindex:
596
597 The model is optional: it can appear once or not at all, as for ``A?``.
598
599
600.. data:: XML_CQUANT_PLUS
601 :noindex:
602
603 The model must occur one or more times (like ``A+``).
604
605
606.. data:: XML_CQUANT_REP
607 :noindex:
608
609 The model must occur zero or more times, as for ``A*``.
610
611
612.. _expat-errors:
613
614Expat error constants
615---------------------
616
617The following constants are provided in the ``errors`` object of the
618:mod:`xml.parsers.expat` module. These constants are useful in interpreting
619some of the attributes of the :exc:`ExpatError` exception objects raised when an
620error has occurred.
621
622The ``errors`` object has the following attributes:
623
624
625.. data:: XML_ERROR_ASYNC_ENTITY
626 :noindex:
627
628
629.. data:: XML_ERROR_ATTRIBUTE_EXTERNAL_ENTITY_REF
630 :noindex:
631
632 An entity reference in an attribute value referred to an external entity instead
633 of an internal entity.
634
635
636.. data:: XML_ERROR_BAD_CHAR_REF
637 :noindex:
638
639 A character reference referred to a character which is illegal in XML (for
640 example, character ``0``, or '``&#0;``').
641
642
643.. data:: XML_ERROR_BINARY_ENTITY_REF
644 :noindex:
645
646 An entity reference referred to an entity which was declared with a notation, so
647 cannot be parsed.
648
649
650.. data:: XML_ERROR_DUPLICATE_ATTRIBUTE
651 :noindex:
652
653 An attribute was used more than once in a start tag.
654
655
656.. data:: XML_ERROR_INCORRECT_ENCODING
657 :noindex:
658
659
660.. data:: XML_ERROR_INVALID_TOKEN
661 :noindex:
662
663 Raised when an input byte could not properly be assigned to a character; for
664 example, a NUL byte (value ``0``) in a UTF-8 input stream.
665
666
667.. data:: XML_ERROR_JUNK_AFTER_DOC_ELEMENT
668 :noindex:
669
670 Something other than whitespace occurred after the document element.
671
672
673.. data:: XML_ERROR_MISPLACED_XML_PI
674 :noindex:
675
676 An XML declaration was found somewhere other than the start of the input data.
677
678
679.. data:: XML_ERROR_NO_ELEMENTS
680 :noindex:
681
682 The document contains no elements (XML requires all documents to contain exactly
683 one top-level element)..
684
685
686.. data:: XML_ERROR_NO_MEMORY
687 :noindex:
688
689 Expat was not able to allocate memory internally.
690
691
692.. data:: XML_ERROR_PARAM_ENTITY_REF
693 :noindex:
694
695 A parameter entity reference was found where it was not allowed.
696
697
698.. data:: XML_ERROR_PARTIAL_CHAR
699 :noindex:
700
701 An incomplete character was found in the input.
702
703
704.. data:: XML_ERROR_RECURSIVE_ENTITY_REF
705 :noindex:
706
707 An entity reference contained another reference to the same entity; possibly via
708 a different name, and possibly indirectly.
709
710
711.. data:: XML_ERROR_SYNTAX
712 :noindex:
713
714 Some unspecified syntax error was encountered.
715
716
717.. data:: XML_ERROR_TAG_MISMATCH
718 :noindex:
719
720 An end tag did not match the innermost open start tag.
721
722
723.. data:: XML_ERROR_UNCLOSED_TOKEN
724 :noindex:
725
726 Some token (such as a start tag) was not closed before the end of the stream or
727 the next token was encountered.
728
729
730.. data:: XML_ERROR_UNDEFINED_ENTITY
731 :noindex:
732
733 A reference was made to a entity which was not defined.
734
735
736.. data:: XML_ERROR_UNKNOWN_ENCODING
737 :noindex:
738
739 The document encoding is not supported by Expat.
740
741
742.. data:: XML_ERROR_UNCLOSED_CDATA_SECTION
743 :noindex:
744
745 A CDATA marked section was not closed.
746
747
748.. data:: XML_ERROR_EXTERNAL_ENTITY_HANDLING
749 :noindex:
750
751
752.. data:: XML_ERROR_NOT_STANDALONE
753 :noindex:
754
755 The parser determined that the document was not "standalone" though it declared
756 itself to be in the XML declaration, and the :attr:`NotStandaloneHandler` was
757 set and returned ``0``.
758
759
760.. data:: XML_ERROR_UNEXPECTED_STATE
761 :noindex:
762
763
764.. data:: XML_ERROR_ENTITY_DECLARED_IN_PE
765 :noindex:
766
767
768.. data:: XML_ERROR_FEATURE_REQUIRES_XML_DTD
769 :noindex:
770
771 An operation was requested that requires DTD support to be compiled in, but
772 Expat was configured without DTD support. This should never be reported by a
773 standard build of the :mod:`xml.parsers.expat` module.
774
775
776.. data:: XML_ERROR_CANT_CHANGE_FEATURE_ONCE_PARSING
777 :noindex:
778
779 A behavioral change was requested after parsing started that can only be changed
780 before parsing has started. This is (currently) only raised by
781 :meth:`UseForeignDTD`.
782
783
784.. data:: XML_ERROR_UNBOUND_PREFIX
785 :noindex:
786
787 An undeclared prefix was found when namespace processing was enabled.
788
789
790.. data:: XML_ERROR_UNDECLARING_PREFIX
791 :noindex:
792
793 The document attempted to remove the namespace declaration associated with a
794 prefix.
795
796
797.. data:: XML_ERROR_INCOMPLETE_PE
798 :noindex:
799
800 A parameter entity contained incomplete markup.
801
802
803.. data:: XML_ERROR_XML_DECL
804 :noindex:
805
806 The document contained no document element at all.
807
808
809.. data:: XML_ERROR_TEXT_DECL
810 :noindex:
811
812 There was an error parsing a text declaration in an external entity.
813
814
815.. data:: XML_ERROR_PUBLICID
816 :noindex:
817
818 Characters were found in the public id that are not allowed.
819
820
821.. data:: XML_ERROR_SUSPENDED
822 :noindex:
823
824 The requested operation was made on a suspended parser, but isn't allowed. This
825 includes attempts to provide additional input or to stop the parser.
826
827
828.. data:: XML_ERROR_NOT_SUSPENDED
829 :noindex:
830
831 An attempt to resume the parser was made when the parser had not been suspended.
832
833
834.. data:: XML_ERROR_ABORTED
835 :noindex:
836
837 This should not be reported to Python applications.
838
839
840.. data:: XML_ERROR_FINISHED
841 :noindex:
842
843 The requested operation was made on a parser which was finished parsing input,
844 but isn't allowed. This includes attempts to provide additional input or to
845 stop the parser.
846
847
848.. data:: XML_ERROR_SUSPEND_PE
849 :noindex:
850
Christian Heimesb186d002008-03-18 15:15:01 +0000851
852.. rubric:: Footnotes
853
854.. [#] The encoding string included in XML output should conform to the
855 appropriate standards. For example, "UTF-8" is valid, but "UTF8" is
856 not. See http://www.w3.org/TR/2006/REC-xml11-20060816/#NT-EncodingDecl
857 and http://www.iana.org/assignments/character-sets .
858