summaryrefslogtreecommitdiffstats
path: root/Include/pyerrors.h
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1998-12-01 18:34:01 (GMT)
committerBarry Warsaw <barry@python.org>1998-12-01 18:34:01 (GMT)
commitd052ff0e579f03ceb17173418e30586e046126eb (patch)
tree932717abf673ce99022c5c73dbb62cf2220f04b4 /Include/pyerrors.h
parent1e270f0e03f6c16d1310535dce7238b2915ef0a2 (diff)
downloadcpython-d052ff0e579f03ceb17173418e30586e046126eb.zip
cpython-d052ff0e579f03ceb17173418e30586e046126eb.tar.gz
cpython-d052ff0e579f03ceb17173418e30586e046126eb.tar.bz2
Added PyExc_NotImplementedError
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r--Include/pyerrors.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h
index c34e250..da5f302 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;