diff options
author | Barry Warsaw <barry@python.org> | 1997-09-16 21:50:36 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1997-09-16 21:50:36 (GMT) |
commit | 65349a3936e4475bdc94b723707f467c596c0135 (patch) | |
tree | 2240336708cf5478d71a4f7197e2d3f53e20bfb0 | |
parent | 2f5f6a2595d4796fea3aecc8e2ed8b800033ecca (diff) | |
download | cpython-65349a3936e4475bdc94b723707f467c596c0135.zip cpython-65349a3936e4475bdc94b723707f467c596c0135.tar.gz cpython-65349a3936e4475bdc94b723707f467c596c0135.tar.bz2 |
[Py_Exc]NumberError => [Py_Exc]ArithmeticError
-rw-r--r-- | Include/pyerrors.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 580f6d7..cd6b7ba 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -55,7 +55,7 @@ void PyErr_NormalizeException Py_PROTO((PyObject**, PyObject**, PyObject**)); extern DL_IMPORT(PyObject *) PyExc_Exception; extern DL_IMPORT(PyObject *) PyExc_StandardError; -extern DL_IMPORT(PyObject *) PyExc_NumberError; +extern DL_IMPORT(PyObject *) PyExc_ArithmeticError; extern DL_IMPORT(PyObject *) PyExc_LookupError; extern DL_IMPORT(PyObject *) PyExc_AssertionError; |