diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-14 23:00:12 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2011-11-14 23:00:12 (GMT) |
commit | 9a812cbc899caeb25ab523e904dfac02e4da2999 (patch) | |
tree | d54805ed801f969bd6bbfc08640c9dfba076b90c /Doc | |
parent | d8b9ae6e8f6d9a562ccdf4700d24c0155979fb4f (diff) | |
download | cpython-9a812cbc899caeb25ab523e904dfac02e4da2999.zip cpython-9a812cbc899caeb25ab523e904dfac02e4da2999.tar.gz cpython-9a812cbc899caeb25ab523e904dfac02e4da2999.tar.bz2 |
Issue #13389: Full garbage collection passes now clear the freelists for
list and dict objects. They already cleared other freelists in the
interpreter.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/c-api/dict.rst | 7 | ||||
-rw-r--r-- | Doc/c-api/list.rst | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/Doc/c-api/dict.rst b/Doc/c-api/dict.rst index 6df84e0..ac714a6 100644 --- a/Doc/c-api/dict.rst +++ b/Doc/c-api/dict.rst @@ -209,3 +209,10 @@ Dictionary Objects for key, value in seq2: if override or key not in a: a[key] = value + + +.. c:function:: int PyDict_ClearFreeList() + + Clear the free list. Return the total number of freed items. + + .. versionadded:: 3.3 diff --git a/Doc/c-api/list.rst b/Doc/c-api/list.rst index feb9015..5b263a7 100644 --- a/Doc/c-api/list.rst +++ b/Doc/c-api/list.rst @@ -142,3 +142,10 @@ List Objects Return a new tuple object containing the contents of *list*; equivalent to ``tuple(list)``. + + +.. c:function:: int PyList_ClearFreeList() + + Clear the free list. Return the total number of freed items. + + .. versionadded:: 3.3 |