index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
gcmodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix a typo in comment
Amaury Forgeot d'Arc
2009-12-27
1
-2/+2
*
Issue #4688: Add a heuristic so that tuples and dicts containing only
Antoine Pitrou
2009-03-23
1
-1/+29
*
fix building the core with --disable-unicode
Benjamin Peterson
2009-01-25
1
-0/+2
*
Issue #4074: Change the criteria for doing a full garbage collection (i.e.
Antoine Pitrou
2009-01-09
1
-1/+65
*
Issue #2467: gc.DEBUG_STATS reports invalid elapsed times.
Antoine Pitrou
2008-12-17
1
-23/+26
*
Security patches from Apple: prevent int overflow when allocating memory
Neal Norwitz
2008-07-31
1
-1/+6
*
- Issue #2862: Make int and float freelist management consistent with other
Gregory P. Smith
2008-07-06
1
-0/+2
*
This reverts r63675 based on the discussion in this thread:
Gregory P. Smith
2008-06-09
1
-4/+4
*
Renamed PyString to PyBytes
Christian Heimes
2008-05-26
1
-4/+4
*
Implemented Martin's suggestion to clear the free lists during the garbage co...
Christian Heimes
2008-02-14
1
-0/+22
*
Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...
Christian Heimes
2008-01-03
1
-1/+1
*
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...
Christian Heimes
2007-12-19
1
-11/+11
*
PEP 3123: Provide forward compatibility with Python 3.0, while keeping
Martin v. Löwis
2007-07-21
1
-11/+11
*
List gc.get_count() in the module docstring.
Barry Warsaw
2006-10-09
1
-0/+1
*
Replace PyObject_CallFunction calls with only object args
Georg Brandl
2006-05-25
1
-1/+1
*
Patch from Aldo Cortesi (OpenBSD buildbot owner).
Neal Norwitz
2006-04-26
1
-7/+14
*
This is a long-ago patch I submitted to SF (1100924) to time the gc passes.
Skip Montanaro
2006-04-21
1
-0/+29
*
Some more changes to make code compile under a C++ compiler.
Anthony Baxter
2006-04-11
1
-2/+3
*
SF Patch #1463867: Improved generator finalization to allow generators
Phillip J. Eby
2006-04-10
1
-1/+5
*
Handle ssize_t
Neal Norwitz
2006-04-06
1
-2/+2
*
In format strings slinging Py_ssize_t, unconditionally
Tim Peters
2006-03-28
1
-22/+9
*
Fix some missing checks after PyTuple_New, PyList_New, PyDict_New
Georg Brandl
2006-03-17
1
-0/+2
*
SF patch #1443865; gc.get_count() added and optional argument 'generation'
Barry Warsaw
2006-03-07
1
-5/+34
*
Fix warnings on x86 (32-bit) and support Win64.
Neal Norwitz
2006-03-06
1
-2/+15
*
Make PyGC_Collect() use Py_ssize_t.
Neal Norwitz
2006-03-04
1
-11/+11
*
Change GC refcount to Py_ssize_t.
Martin v. Löwis
2006-03-01
1
-1/+1
*
Change _PyObject_GC_Resize to expect Py_ssize_t.
Martin v. Löwis
2006-02-16
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-1/+1
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
PEP 342 implementation. Per Guido's comments, the generator throw()
Phillip J. Eby
2005-08-02
1
-3/+1
*
Add missing INCREF.
Neil Schemenauer
2005-06-18
1
-0/+1
*
gc_list_move(): Make this truly equivalent to remove+append. While
Tim Peters
2004-11-01
1
-3/+5
*
gc list function cleanup.
Tim Peters
2004-11-01
1
-15/+31
*
handle_weakrefs(): Simplification -- there's no need to make a second
Tim Peters
2004-10-31
1
-58/+28
*
SF 1055820: weakref callback vs gc vs threads
Tim Peters
2004-10-30
1
-106/+183
*
Convert return value to boolean.
Raymond Hettinger
2004-01-04
1
-1/+1
*
Silence GCC warning when asserts are turned off.
Guido van Rossum
2003-11-24
1
-2/+1
*
SF bug 839548: Bug in type's GC handling causes segfaults.
Tim Peters
2003-11-20
1
-13/+129
*
update_refs(): assert that incoming refcounts aren't 0. The comment
Tim Peters
2003-11-14
1
-0/+19
*
Bug #794140: cygwin builds do not embed
Jason Tishler
2003-09-04
1
-1/+1
*
- New C API PyGC_Collect(), same as calling gc.collect().
Guido van Rossum
2003-04-17
1
-1/+19
*
s/referrents/referents/g. Gotta love that referrers remains rife with rs.
Tim Peters
2003-04-08
1
-8/+8
*
Finished implementing gc.get_referrents(): dealt with error and end
Tim Peters
2003-04-08
1
-6/+15
*
Comment repair; no semantic changes.
Tim Peters
2003-04-07
1
-4/+5
*
Reworked has_finalizer() to use the new _PyObject_Lookup() instead
Tim Peters
2003-04-07
1
-73/+45
*
initgc(): Rewrote to use the PyModule_AddXYZ API; cuts code size.
Tim Peters
2003-04-06
1
-17/+14
*
handle_finalizers(): Rewrote to call append_objects() and gc_list_merge()
Tim Peters
2003-04-06
1
-36/+31
*
Switched from METH_VARARGS to METH_NOARGS for the 7 module functions that
Tim Peters
2003-04-06
1
-44/+17
*
Reworked move_finalizer_reachable() to create two distinct lists:
Tim Peters
2003-04-06
1
-31/+57
*
move_finalizers(): Rewrote. It's not necessary for this routine
Tim Peters
2003-04-05
1
-29/+20
[next]