diff options
author | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2007-09-01 13:51:09 (GMT) |
commit | 55ac8f0f26efdbbcb5cc197f9369d23d50bee908 (patch) | |
tree | a0d5b7128c055d8c767652dc3948c3404be06396 /Doc/library/gc.rst | |
parent | 1617457cff847fed9fadb01f1acf6ba8bb621726 (diff) | |
download | cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.zip cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.gz cpython-55ac8f0f26efdbbcb5cc197f9369d23d50bee908.tar.bz2 |
Get rid of the remaining versionadded/versionchanged directives.
Diffstat (limited to 'Doc/library/gc.rst')
-rw-r--r-- | Doc/library/gc.rst | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/Doc/library/gc.rst b/Doc/library/gc.rst index 70e4a6b..4a4dfde 100644 --- a/Doc/library/gc.rst +++ b/Doc/library/gc.rst @@ -44,9 +44,6 @@ The :mod:`gc` module provides the following functions: :exc:`ValueError` is raised if the generation number is invalid. The number of unreachable objects found is returned. - .. versionchanged:: 2.5 - The optional *generation* argument was added. - .. function:: set_debug(flags) @@ -65,8 +62,6 @@ The :mod:`gc` module provides the following functions: Returns a list of all objects tracked by the collector, excluding the list returned. - .. versionadded:: 2.2 - .. function:: set_threshold(threshold0[, threshold1[, threshold2]]) @@ -93,8 +88,6 @@ The :mod:`gc` module provides the following functions: Return the current collection counts as a tuple of ``(count0, count1, count2)``. - .. versionadded:: 2.5 - .. function:: get_threshold() @@ -119,8 +112,6 @@ The :mod:`gc` module provides the following functions: invalid state. Avoid using :func:`get_referrers` for any purpose other than debugging. - .. versionadded:: 2.2 - .. function:: get_referents(*objs) @@ -132,12 +123,10 @@ The :mod:`gc` module provides the following functions: be involved in a cycle. So, for example, if an integer is directly reachable from an argument, that integer object may or may not appear in the result list. - .. versionadded:: 2.3 The following variable is provided for read-only access (you can mutate its value but should not rebind it): - .. data:: garbage A list of objects which the collector found to be unreachable but could not be |