diff options
author | xdegaye <xdegaye@gmail.com> | 2017-10-26 13:09:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-26 13:09:06 (GMT) |
commit | 56d1f5ca32892c7643eb8cee49c40c1644f1abfe (patch) | |
tree | 696b62e9bdd22063a894ecb5a7b9eafe60385edf /Include | |
parent | 275d2d9c4663a1ea8d1f7c8778567a735b0372c1 (diff) | |
download | cpython-56d1f5ca32892c7643eb8cee49c40c1644f1abfe.zip cpython-56d1f5ca32892c7643eb8cee49c40c1644f1abfe.tar.gz cpython-56d1f5ca32892c7643eb8cee49c40c1644f1abfe.tar.bz2 |
bpo-30697: Fix PyErr_NormalizeException() when no memory (GH-2327)
Diffstat (limited to 'Include')
-rw-r--r-- | Include/pyerrors.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 9418201..f289471 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -220,8 +220,6 @@ PyAPI_DATA(PyObject *) PyExc_IOError; PyAPI_DATA(PyObject *) PyExc_WindowsError; #endif -PyAPI_DATA(PyObject *) PyExc_RecursionErrorInst; - /* Predefined warning categories */ PyAPI_DATA(PyObject *) PyExc_Warning; PyAPI_DATA(PyObject *) PyExc_UserWarning; |