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