summaryrefslogtreecommitdiffstats
path: root/Modules/gcmodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Merge ssize_t branch.Martin v. Löwis2006-02-151-1/+1
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-3/+1
* Add missing INCREF.Neil Schemenauer2005-06-181-0/+1
* gc_list_move(): Make this truly equivalent to remove+append. WhileTim Peters2004-11-011-3/+5
* gc list function cleanup.Tim Peters2004-11-011-15/+31
* handle_weakrefs(): Simplification -- there's no need to make a secondTim Peters2004-10-311-58/+28
* SF 1055820: weakref callback vs gc vs threadsTim Peters2004-10-301-106/+183
* Convert return value to boolean.Raymond Hettinger2004-01-041-1/+1
* Silence GCC warning when asserts are turned off.Guido van Rossum2003-11-241-2/+1
* SF bug 839548: Bug in type's GC handling causes segfaults.Tim Peters2003-11-201-13/+129
* update_refs(): assert that incoming refcounts aren't 0. The commentTim Peters2003-11-141-0/+19
* Bug #794140: cygwin builds do not embedJason Tishler2003-09-041-1/+1
* - New C API PyGC_Collect(), same as calling gc.collect().Guido van Rossum2003-04-171-1/+19
* s/referrents/referents/g. Gotta love that referrers remains rife with rs.Tim Peters2003-04-081-8/+8
* Finished implementing gc.get_referrents(): dealt with error and endTim Peters2003-04-081-6/+15
* Comment repair; no semantic changes.Tim Peters2003-04-071-4/+5
* Reworked has_finalizer() to use the new _PyObject_Lookup() insteadTim Peters2003-04-071-73/+45
* initgc(): Rewrote to use the PyModule_AddXYZ API; cuts code size.Tim Peters2003-04-061-17/+14
* handle_finalizers(): Rewrote to call append_objects() and gc_list_merge()Tim Peters2003-04-061-36/+31
* Switched from METH_VARARGS to METH_NOARGS for the 7 module functions thatTim Peters2003-04-061-44/+17
* Reworked move_finalizer_reachable() to create two distinct lists:Tim Peters2003-04-061-31/+57
* move_finalizers(): Rewrote. It's not necessary for this routineTim Peters2003-04-051-29/+20
* New comments. Rewrote has_finalizer() as a sequence of ifs instead ofTim Peters2003-04-051-6/+21
* Fixed new seemingly random segfaults, by moving the initialization ofTim Peters2003-04-051-8/+11
* Fix Tim's boom example.Jeremy Hylton2003-04-041-20/+54
* Add get_referrents() helper function.Jeremy Hylton2003-04-031-1/+1
* Add get_referrents() helper function.Jeremy Hylton2003-04-031-1/+32
* Fix typo.Martin v. Löwis2002-11-091-1/+1
* For new-style classes, we can now test for tp_del instead of askingGuido van Rossum2002-08-091-3/+3
* Trashcan cleanup: Now that cyclic gc is always there, the trashcanTim Peters2002-07-071-0/+3
* Removed WITH_CYCLE_GC #ifdef-ery. Holes:Tim Peters2002-07-071-23/+0