summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2006-10-09 19:43:24 (GMT)
committerBarry Warsaw <barry@python.org>2006-10-09 19:43:24 (GMT)
commite5ec613c4b80a50ca324c26d9704e69a97ca900c (patch)
tree79654204c5062ecd9acec4998f5620cf9be7e214 /Modules
parent412a9ea10e786f61b9d9f144b9296d30b5ad6bb9 (diff)
downloadcpython-e5ec613c4b80a50ca324c26d9704e69a97ca900c.zip
cpython-e5ec613c4b80a50ca324c26d9704e69a97ca900c.tar.gz
cpython-e5ec613c4b80a50ca324c26d9704e69a97ca900c.tar.bz2
List gc.get_count() in the module docstring.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/gcmodule.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c
index 872727d..6c5011c 100644
--- a/Modules/gcmodule.c
+++ b/Modules/gcmodule.c
@@ -1179,6 +1179,7 @@ PyDoc_STRVAR(gc__doc__,
"disable() -- Disable automatic garbage collection.\n"
"isenabled() -- Returns true if automatic collection is enabled.\n"
"collect() -- Do a full collection right now.\n"
+"get_count() -- Return the current collection counts.\n"
"set_debug() -- Set debugging flags.\n"
"get_debug() -- Get debugging flags.\n"
"set_threshold() -- Set the collection thresholds.\n"