summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2000-09-21 16:32:28 (GMT)
committerFred Drake <fdrake@acm.org>2000-09-21 16:32:28 (GMT)
commit44627016da509b2bc59c38d7bf0ba592fe56a7a3 (patch)
treec70c8232a2f663660a822b20f82c9412d2a5023c
parent1e3c8ccb9b65d0994dd09f8147f87d6affeaa552 (diff)
downloadcpython-44627016da509b2bc59c38d7bf0ba592fe56a7a3.zip
cpython-44627016da509b2bc59c38d7bf0ba592fe56a7a3.tar.gz
cpython-44627016da509b2bc59c38d7bf0ba592fe56a7a3.tar.bz2
SAXException.__getitem__(): Raise AttributeError instead of NameError.
-rw-r--r--Lib/xml/sax/_exceptions.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/xml/sax/_exceptions.py b/Lib/xml/sax/_exceptions.py
index 1553b93..c02974f 100644
--- a/Lib/xml/sax/_exceptions.py
+++ b/Lib/xml/sax/_exceptions.py
@@ -37,7 +37,7 @@ class SAXException(Exception):
def __getitem__(self, ix):
"""Avoids weird error messages if someone does exception[ix] by
mistake, since Exception has __getitem__ defined."""
- raise NameError("__getitem__")
+ raise AttributeError("__getitem__")
# ===== SAXPARSEEXCEPTION =====