From: Barry Warsaw Date: Tue, 1 Dec 1998 18:34:01 +0000 (+0000) Subject: Added PyExc_NotImplementedError X-Git-Tag: v1.5.2b1~149 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d052ff0e579f03ceb17173418e30586e046126eb;p=thirdparty%2FPython%2Fcpython.git Added PyExc_NotImplementedError --- diff --git a/Include/pyerrors.h b/Include/pyerrors.h index c34e250678d7..da5f302cdde6 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -73,6 +73,7 @@ extern DL_IMPORT(PyObject *) PyExc_MemoryError; extern DL_IMPORT(PyObject *) PyExc_NameError; extern DL_IMPORT(PyObject *) PyExc_OverflowError; extern DL_IMPORT(PyObject *) PyExc_RuntimeError; +extern DL_IMPORT(PyObject *) PyExc_NotImplementedError; extern DL_IMPORT(PyObject *) PyExc_SyntaxError; extern DL_IMPORT(PyObject *) PyExc_SystemError; extern DL_IMPORT(PyObject *) PyExc_SystemExit;