diff options
Diffstat (limited to 'Doc/library/gc.rst')
-rw-r--r-- | Doc/library/gc.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst index 70e4a6b..9ebbf06 100644 --- a/Doc/library/gc.rst +++ b/Doc/library/gc.rst @@ -47,6 +47,12 @@ The :mod:`gc` module provides the following functions: .. versionchanged:: 2.5 The optional *generation* argument was added. + .. versionchanged:: 2.6 + The free lists maintained for a number of builtin types are cleared + whenever a full collection or collection of the highest generation (2) + is run. Not all items in some free lists may be freed due to the + particular implementation, in particular :class:`int` and :class:`float`. + .. function:: set_debug(flags) |