commit | 3b718a79af900fdacaf0b825137f69eadc753765 | [log] [tgz] |
---|---|---|
author | Christian Heimes <christian@cheimes.de> | Thu Feb 14 12:47:33 2008 +0000 |
committer | Christian Heimes <christian@cheimes.de> | Thu Feb 14 12:47:33 2008 +0000 |
tree | 71cbe9fcb7b94a2611e5f62cf329285270615e22 | |
parent | 50361d4d9b3e8729aa535c3dfde3d9d2ad899d47 [diff] [blame] |
Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation.
diff --git a/Include/frameobject.h b/Include/frameobject.h index 794f651..297b66d 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h
@@ -75,6 +75,8 @@ PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int); PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *); +PyAPI_FUNC(int) PyFrame_ClearFreeList(void); + #ifdef __cplusplus } #endif