[Python-checkins] r52254 - python/branches/release25-maint/Modules/gcmodule.c

barry.warsaw python-checkins at python.org
Mon Oct 9 21:42:33 CEST 2006


Author: barry.warsaw
Date: Mon Oct  9 21:42:33 2006
New Revision: 52254

Modified:
   python/branches/release25-maint/Modules/gcmodule.c
Log:
List gc.get_count() in the module docstring.


Modified: python/branches/release25-maint/Modules/gcmodule.c
==============================================================================
--- python/branches/release25-maint/Modules/gcmodule.c	(original)
+++ python/branches/release25-maint/Modules/gcmodule.c	Mon Oct  9 21:42:33 2006
@@ -1179,6 +1179,7 @@
 "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"


More information about the Python-checkins mailing list