summaryrefslogtreecommitdiffstats
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-04-02 05:22:53 (GMT)
committerGuido van Rossum <guido@python.org>1997-04-02 05:22:53 (GMT)
commit6fa4466cec75ca540ebf00a79092415cc1e1485f (patch)
treecd4ad53731d2b9e97978a94aa5410e2ccf9b1f0c /Include/pyerrors.h
parent556440d278fa1f864edabfb77a89e4a3b7a6b27f (diff)
downloadcpython-6fa4466cec75ca540ebf00a79092415cc1e1485f.zip
cpython-6fa4466cec75ca540ebf00a79092415cc1e1485f.tar.gz
cpython-6fa4466cec75ca540ebf00a79092415cc1e1485f.tar.bz2
Added AssertionError.
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index bdc17ee..c3de80a 100644
--- a/Include/pyerrors.h
+++ b/Include/pyerrors.h
@@ -48,6 +48,7 @@ void PyErr_Restore Py_PROTO((PyObject *, PyObject *, PyObject *));
/* Predefined exceptions */
extern DL_IMPORT(PyObject *) PyExc_AccessError;
+extern DL_IMPORT(PyObject *) PyExc_AssertionError;
extern DL_IMPORT(PyObject *) PyExc_AttributeError;
extern DL_IMPORT(PyObject *) PyExc_EOFError;
extern DL_IMPORT(PyObject *) PyExc_FloatingPointError;