summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libgc.tex
Commit message (Collapse)AuthorAgeFilesLines
* Document that get_referrers can return unreachable but uncollected objects.Martin v. Löwis2002-01-261-0/+7
| | | | Fixes #505453.
* Add a missing "cycle".Fred Drake2001-12-141-1/+1
|
* Rename get_referents to get_referrers. Fixes #483815.Martin v. Löwis2001-11-241-0/+7
|
* Relatively large expansion of the docs for gc.garbage.Tim Peters2001-11-181-5/+19
|
* Finish SF patch 477059: __del__ on new classes vs. GC.Tim Peters2001-11-031-1/+5
| | | | Just doc and NEWS here, about the change in gc.garbage meaning.
* - update Neil's email addressNeil Schemenauer2000-10-041-2/+2
|
* - Add DEBUG_SAVEALL option. When enabled all garbage objects found by theNeil Schemenauer2000-09-221-2/+10
| | | | | | | collector will be saved in gc.garbage. This is useful for debugging a program that creates reference cycles. - Fix else statements in gcmodule.c to conform to Python coding standards.
* Add \modulesynopsis for inclusion in the list of modules at the beginningFred Drake2000-09-091-0/+6
| | | | | | | of the chapter. Add explanation that this is only available when the cycle detector is enabled at build time.
* Neil Schemenauer: GC enable(), disable(), isenabled() interface.Vladimir Marangozov2000-08-061-7/+19
| | | | | | Small stylistic changes by VM: - is_enabled() -> isenabled() - static ... Py_<func> -> static ... gc_<func>
* Documentation for the gc module. Text from Neil SchemenauerFred Drake2000-07-121-0/+106
<nascheme@enme.ucalgary.ca>, markup & minor revisions from Fred Drake.