From: Barry Warsaw Date: Tue, 16 Sep 1997 21:50:36 +0000 (+0000) Subject: [Py_Exc]NumberError => [Py_Exc]ArithmeticError X-Git-Tag: v1.5a4~149 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=65349a3936e4475bdc94b723707f467c596c0135;p=python [Py_Exc]NumberError => [Py_Exc]ArithmeticError --- diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 580f6d7da9..cd6b7ba7cc 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;