From 65349a3936e4475bdc94b723707f467c596c0135 Mon Sep 17 00:00:00 2001 From: Barry Warsaw Date: Tue, 16 Sep 1997 21:50:36 +0000 Subject: [PATCH] [Py_Exc]NumberError => [Py_Exc]ArithmeticError --- Include/pyerrors.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 580f6d7da90..cd6b7ba7cc8 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;