diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-28 22:56:58 +0000 |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-28 22:56:58 +0000 |
commit | 07e20ef50b52d2359213bc5d91f809a76cfd1524 (patch) | |
tree | 74803fa7efe3959104b0d9760e4cff172e5c3919 /Include/pyerrors.h | |
parent | 1842d0c4d88fffb5bea53b410acb77796b66bc8b (diff) | |
download | cpython-git-07e20ef50b52d2359213bc5d91f809a76cfd1524.tar.gz |
Issue #5437: A preallocated MemoryError instance should not hold traceback
data (including local variables caught in the stack trace) alive infinitely.
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r-- | Include/pyerrors.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 25843c359d..f717afa211 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -156,7 +156,6 @@ PyAPI_DATA(PyObject *) PyExc_VMSError; PyAPI_DATA(PyObject *) PyExc_BufferError; -PyAPI_DATA(PyObject *) PyExc_MemoryErrorInst; PyAPI_DATA(PyObject *) PyExc_RecursionErrorInst; /* Predefined warning categories */ |