summaryrefslogtreecommitdiffstats
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1997-09-16 21:50:36 (GMT)
committerBarry Warsaw <barry@python.org>1997-09-16 21:50:36 (GMT)
commit65349a3936e4475bdc94b723707f467c596c0135 (patch)
tree2240336708cf5478d71a4f7197e2d3f53e20bfb0 /Include/pyerrors.h
parent2f5f6a2595d4796fea3aecc8e2ed8b800033ecca (diff)
downloadcpython-65349a3936e4475bdc94b723707f467c596c0135.zip
cpython-65349a3936e4475bdc94b723707f467c596c0135.tar.gz
cpython-65349a3936e4475bdc94b723707f467c596c0135.tar.bz2
[Py_Exc]NumberError => [Py_Exc]ArithmeticError
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h2
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;