diff options
author | Guido van Rossum <guido@python.org> | 1997-02-14 22:53:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-02-14 22:53:12 (GMT) |
commit | 7d4266ed5a68e4434a86a11eb771abb28d13322e (patch) | |
tree | c1e92f426b3b3a523d9f16020fea741776087d46 /Include/pyerrors.h | |
parent | 1ca407f3e47a80c0c6f76d9c8e4be7c28d60d243 (diff) | |
download | cpython-7d4266ed5a68e4434a86a11eb771abb28d13322e.zip cpython-7d4266ed5a68e4434a86a11eb771abb28d13322e.tar.gz cpython-7d4266ed5a68e4434a86a11eb771abb28d13322e.tar.bz2 |
Changes for Lee Busby's SIGFPE patch set.
New file pyfpe.h, new exception FloatingPointError.
Diffstat (limited to 'Include/pyerrors.h')
-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 b29ec03..61751e6 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -51,6 +51,7 @@ extern DL_IMPORT(PyObject *) PyExc_AccessError; extern DL_IMPORT(PyObject *) PyExc_AttributeError; extern DL_IMPORT(PyObject *) PyExc_ConflictError; extern DL_IMPORT(PyObject *) PyExc_EOFError; +extern DL_IMPORT(PyObject *) PyExc_FloatingPointError; extern DL_IMPORT(PyObject *) PyExc_IOError; extern DL_IMPORT(PyObject *) PyExc_ImportError; extern DL_IMPORT(PyObject *) PyExc_IndexError; |