rest25/library/gc.rst => rest262/library/gc.rst
41
42   With no arguments, run a full collection.  The optional argument *generation*
43   may be an integer specifying which generation to collect (from 0 to 2).  A
44   :exc:`ValueError` is raised if the generation number  is invalid. The number of
45   unreachable objects found is returned.
46
47   .. versionchanged:: 2.5
48      The optional *generation* argument was added.
t49+ 
50+   .. versionchanged:: 2.6
51+      The free lists maintained for a number of builtin types are cleared
52+      whenever a full collection or collection of the highest generation (2)
53+      is run.  Not all items in some free lists may be freed due to the
54+      particular implementation, in particular :class:`int` and :class:`float`.
49
50
51.. function:: set_debug(flags)
52
53   Set the garbage collection debugging flags. Debugging information will be
54   written to ``sys.stderr``.  See below for a list of debugging flags which can be
55   combined using bit operations to control debugging.
56
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op