diff options
author | Guido van Rossum <guido@python.org> | 1997-04-02 05:22:53 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-04-02 05:22:53 (GMT) |
commit | 6fa4466cec75ca540ebf00a79092415cc1e1485f (patch) | |
tree | cd4ad53731d2b9e97978a94aa5410e2ccf9b1f0c /Include | |
parent | 556440d278fa1f864edabfb77a89e4a3b7a6b27f (diff) | |
download | cpython-6fa4466cec75ca540ebf00a79092415cc1e1485f.zip cpython-6fa4466cec75ca540ebf00a79092415cc1e1485f.tar.gz cpython-6fa4466cec75ca540ebf00a79092415cc1e1485f.tar.bz2 |
Added AssertionError.
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyerrors.h | 1 |
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; |