summaryrefslogtreecommitdiffstats
path: root/Modules/gcmodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #18408: PyObject_GC_NewVar() now raises SystemError exception if nitemsVictor Stinner2013-07-081-2/+9
* gcmodule.c: strip trailing spacesVictor Stinner2013-07-081-7/+7
* Issue #17937: Try harder to collect cyclic garbage at shutdown.Antoine Pitrou2013-05-181-6/+25
* Backout c89febab4648 following private feedback by Guido.Antoine Pitrou2013-05-141-1/+4
* Issue #17807: Generators can now be finalized even when they are part of a re...Antoine Pitrou2013-05-081-4/+1
* Issue #1545463: At shutdown, defer finalization of codec modules so that stde...Antoine Pitrou2013-05-081-3/+7
* Issue #1545463: Global variables caught in reference cycles are now garbage-c...Antoine Pitrou2013-05-061-1/+7
* Issue #16351: New function gc.get_stats() returns per-generation collection s...Antoine Pitrou2012-10-301-0/+64
* Issue #14775: Fix a potential quadratic dict build-up due to the garbage coll...Antoine Pitrou2012-05-281-3/+57
|\
| * Issue #14775: Fix a potential quadratic dict build-up due to the garbage coll...Antoine Pitrou2012-05-281-3/+57
* | Issue #10576: Add a progress callback to gcmoduleKristján Valur Jónsson2012-04-151-6/+74
* | Remove unused variable from gcmodule.c. The code no longer tests for theKristján Valur Jónsson2012-04-081-9/+0
* | Issue #6695: Full garbage collection runs now clear the freelist of set objects.Antoine Pitrou2011-12-161-0/+1
* | Issue #13389: Full garbage collection passes now clear the freelists forAntoine Pitrou2011-11-141-0/+2
* | Rename _Py_identifier to _Py_IDENTIFIER.Martin v. Löwis2011-10-141-1/+1
* | Add API for static strings, primarily good for identifiers.Martin v. Löwis2011-10-091-1/+3
* | Issue #10833: Use PyUnicode_FromFormat() and PyErr_Format() instead ofVictor Stinner2011-03-211-2/+2
|/
* Issue #10333: Remove ancient GC API, which has been deprecated sinceAntoine Pitrou2011-01-041-8/+0
* Issue #10279: fix test_gc under Win64.Antoine Pitrou2010-11-051-2/+2
* Add a new warning gategory, ResourceWarning, as discussed on python-dev. It ...Georg Brandl2010-10-241-10/+10
* Do not print additional shutdown message when gc.DEBUG_SAVEALL is setAntoine Pitrou2010-09-141-1/+2
* Issue #477863: Print a warning at shutdown if gc.garbage is not empty.Antoine Pitrou2010-08-081-9/+39
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-861/+861
* Merged revisions 80704 via svnmerge fromAntoine Pitrou2010-05-021-1/+1
* Merged revisions 76847,76851,76869,76882,76891-76892,76924,77007,77070,77092,...Benjamin Peterson2009-12-311-2/+2
* Merged revisions 70546 via svnmerge fromAntoine Pitrou2009-03-231-1/+29
* Merged revisions 68462 via svnmerge fromAntoine Pitrou2009-01-091-1/+65
* Merged revisions 67832 via svnmerge fromAntoine Pitrou2008-12-171-23/+26
* Closes release blocker #3627.Neal Norwitz2008-08-241-1/+6
* Merged revisions 64722,64729,64753,64845-64846,64849,64871,64880-64882,64885,...Georg Brandl2008-07-161-0/+1
* Fix some broken URLs to GC design discussions.Neil Schemenauer2008-07-151-3/+8
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-10/+21
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-0/+22
* Merged revisions 59666-59679 via svnmerge fromChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-11/+11
* Minor cleanup in the gc module.Amaury Forgeot d'Arc2007-12-101-15/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-1/+1
* Convert a bunch of constant strings in C to unicode.Neal Norwitz2007-08-231-1/+1
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-11/+11
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-1/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-0/+1
* Fix test_gc failure by fixing the bug test_gc found: __del__ methods were noThomas Wouters2006-08-211-1/+1
* Completely get rid of PyClass and PyInstance.Guido van Rossum2006-08-171-29/+2
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-8/+15
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-26/+49
* SF patch #1443865; gc.get_count() added and optional argument 'generation'Barry Warsaw2006-03-071-5/+34
* Fix warnings on x86 (32-bit) and support Win64.Neal Norwitz2006-03-061-2/+15
* Make PyGC_Collect() use Py_ssize_t.Neal Norwitz2006-03-041-11/+11
* Change GC refcount to Py_ssize_t.Martin v. Löwis2006-03-011-1/+1
* Change _PyObject_GC_Resize to expect Py_ssize_t.Martin v. Löwis2006-02-161-1/+1