diff options
author | Barry Warsaw <barry@python.org> | 1998-12-01 18:34:01 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-12-01 18:34:01 (GMT) |
commit | d052ff0e579f03ceb17173418e30586e046126eb (patch) | |
tree | 932717abf673ce99022c5c73dbb62cf2220f04b4 /Include | |
parent | 1e270f0e03f6c16d1310535dce7238b2915ef0a2 (diff) | |
download | cpython-d052ff0e579f03ceb17173418e30586e046126eb.zip cpython-d052ff0e579f03ceb17173418e30586e046126eb.tar.gz cpython-d052ff0e579f03ceb17173418e30586e046126eb.tar.bz2 |
Added PyExc_NotImplementedError
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyerrors.h | 1 |
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; |