summaryrefslogtreecommitdiff
path: root/Doc/library/pyexpat.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-08-03 12:06:29 +0000
committerGeorg Brandl <georg@python.org>2010-08-03 12:06:29 +0000
commite3cab71209b9c6a839dfa78891358020bc4e4901 (patch)
tree82a0005b47851786711bbd36e930cb24ddebc47c /Doc/library/pyexpat.rst
parent044c7ce309f58168dd5ee5af3b18416f154ea7fe (diff)
downloadcpython-e3cab71209b9c6a839dfa78891358020bc4e4901.tar.gz
Terminology fix: exceptions are raised, except in generator.throw().
Diffstat (limited to 'Doc/library/pyexpat.rst')
-rw-r--r--Doc/library/pyexpat.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/pyexpat.rst b/Doc/library/pyexpat.rst
index aaa389aebc..e16e45fa09 100644
--- a/Doc/library/pyexpat.rst
+++ b/Doc/library/pyexpat.rst
@@ -429,7 +429,7 @@ otherwise stated.
Called if the XML document hasn't been declared as being a standalone document.
This happens when there is an external subset or a reference to a parameter
entity, but the XML declaration does not set standalone to ``yes`` in an XML
- declaration. If this handler returns ``0``, then the parser will throw an
+ declaration. If this handler returns ``0``, then the parser will raise an
:const:`XML_ERROR_NOT_STANDALONE` error. If this handler is not set, no
exception is raised by the parser for this condition.
@@ -446,7 +446,7 @@ otherwise stated.
responsible for creating the sub-parser using
``ExternalEntityParserCreate(context)``, initializing it with the appropriate
callbacks, and parsing the entity. This handler should return an integer; if it
- returns ``0``, the parser will throw an
+ returns ``0``, the parser will raise an
:const:`XML_ERROR_EXTERNAL_ENTITY_HANDLING` error, otherwise parsing will
continue.