diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-28 22:56:58 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2010-10-28 22:56:58 (GMT) |
commit | 07e20ef50b52d2359213bc5d91f809a76cfd1524 (patch) | |
tree | 74803fa7efe3959104b0d9760e4cff172e5c3919 /Include | |
parent | 1842d0c4d88fffb5bea53b410acb77796b66bc8b (diff) | |
download | cpython-07e20ef50b52d2359213bc5d91f809a76cfd1524.zip cpython-07e20ef50b52d2359213bc5d91f809a76cfd1524.tar.gz cpython-07e20ef50b52d2359213bc5d91f809a76cfd1524.tar.bz2 |
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')
-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 25843c3..f717afa 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 */ |