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
*
bpo-40533: Disable GC in subinterpreters (GH-19961)
Victor Stinner
2020-05-06
1
-0/+8
*
bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769)
Victor Stinner
2020-04-29
1
-9/+7
*
bpo-40268: Remove unused pycore_pymem.h includes (GH-19531)
Victor Stinner
2020-04-15
1
-1/+0
*
bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464)
Hai Shi
2020-04-14
1
-8/+14
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-3/+4
*
bpo-40241: Add PyObject_GC_IsTracked and PyObject_GC_IsFinalized to the publi...
Pablo Galindo
2020-04-11
1
-0/+18
*
bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377)
Victor Stinner
2020-04-06
1
-1/+1
*
bpo-39245: Switch to public API for Vectorcall (GH-18460)
Petr Viktorin
2020-02-11
1
-1/+1
*
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner
2020-02-07
1
-1/+1
*
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner
2020-02-07
1
-1/+1
*
bpo-38631: Avoid Py_FatalError() in GC collect() (GH-18164)
Victor Stinner
2020-01-24
1
-7/+1
*
bpo-39322: Add gc.is_finalized to the gc module docstring (GH-18000)
Pablo Galindo
2020-01-14
1
-0/+1
*
bpo-39322: Add gc.is_finalized to check if an object has been finalised by th...
Pablo Galindo
2020-01-14
1
-0/+20
*
Fix typos in gcmodule.c and restructure comments for clarity (GH-17983)
Pablo Galindo
2020-01-13
1
-44/+36
*
Move comment about permanent generation to gcmodule.c (GH-17718)
Pablo Galindo
2019-12-27
1
-2/+34
*
bpo-38896: Remove PyUnicode_ClearFreeList() function (GH-17354)
Victor Stinner
2019-11-23
1
-1/+0
*
bpo-37340: Remove PyMethod_ClearFreeList() and PyCFunction_ClearFreeList() (G...
Victor Stinner
2019-11-20
1
-2/+0
*
bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287)
Victor Stinner
2019-11-20
1
-34/+38
*
bpo-36854: gcmodule.c gets its state from tstate (GH-17285)
Victor Stinner
2019-11-20
1
-157/+184
*
bpo-38858: Factorize Py_EndInterpreter() code (GH-17273)
Victor Stinner
2019-11-20
1
-2/+2
*
bpo-36710: Add PyInterpreterState.runtime field (GH-17270)
Victor Stinner
2019-11-20
1
-2/+2
*
bpo-36710: Pass tstate parameter to GC collect() (GH-17267)
Victor Stinner
2019-11-20
1
-37/+50
*
bpo-38631: Avoid Py_FatalError() in handle_legacy_finalizers() (GH-17266)
Victor Stinner
2019-11-20
1
-6/+18
*
Minor fixes to the formatting of the notes of Modules/gcmodule.c (GH-17247)
Pablo Galindo
2019-11-19
1
-2/+2
*
Years overdue, explain why unreachable objects are moved. (GH-17030)
Tim Peters
2019-11-02
1
-1/+38
*
visit_reachable: replace release-mode test with an assert. (GH-16866)
Tim Peters
2019-10-21
1
-2/+5
*
validate_list: make flags argument impossible to spell wrongly. (GH-16843)
Tim Peters
2019-10-19
1
-16/+37
*
Misc gc code & comment cleanups. (GH-16752)
Tim Peters
2019-10-13
1
-22/+44
*
bpo-38379: Don't block collection of unreachable objects when some objects re...
Pablo Galindo
2019-10-13
1
-60/+122
*
bpo-38437: Activate GC_DEBUG when PY_DEBUG is set (GH-16707)
Pablo Galindo
2019-10-10
1
-2/+5
*
bpo-38392: Only declare visit_validate() if Py_DEBUG is defined (GH-16689)
Victor Stinner
2019-10-10
1
-0/+3
*
bpo-38379: don't claim objects are collected when they aren't (#16658)
Tim Peters
2019-10-09
1
-6/+4
*
bpo-38070: Enhance visit_decref() debug trace (GH-16631)
Victor Stinner
2019-10-08
1
-4/+5
*
bpo-38392: PyObject_GC_Track() validates object in debug mode (GH-16615)
Victor Stinner
2019-10-07
1
-0/+19
*
bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612)
Victor Stinner
2019-10-07
1
-1/+0
*
Clear weakrefs in garbage found by the GC (#16495)
Neil Schemenauer
2019-09-30
1
-0/+17
*
bpo-38070: visit_decref() calls _PyObject_IsFreed() (GH-15782)
Victor Stinner
2019-09-09
1
-0/+2
*
bpo-37990: fix gc stats (GH-15626)
Inada Naoki
2019-08-31
1
-2/+3
*
bpo-37729: gc: write stats at once (GH-15050)
Inada Naoki
2019-08-02
1
-20/+25
*
bpo-37483: add _PyObject_CallOneArg() function (#14558)
Jeroen Demeyer
2019-07-04
1
-1/+1
*
bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ...
Antoine Pitrou
2019-05-29
1
-1/+0
*
bpo-36829: Add _PyErr_WriteUnraisableMsg() (GH-13488)
Victor Stinner
2019-05-27
1
-3/+2
*
bpo-36710: Add runtime parameter in gcmodule.c (GH-12958)
Victor Stinner
2019-04-26
1
-139/+163
*
bpo-36710: Add runtime variable to Py_FinalizeEx() (GH-12937)
Victor Stinner
2019-04-24
1
-2/+3
*
bpo-36389: Cleanup gc.set_threshold() (GH-12844)
Victor Stinner
2019-04-15
1
-2/+2
*
bpo-36016: Add generation option to gc.getobjects() (GH-11909)
Pablo Galindo
2019-02-23
1
-5/+39
*
bpo-35059: Cast void* to PyObject* (GH-10650)
Victor Stinner
2018-11-22
1
-4/+5
*
bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643)
Victor Stinner
2018-11-22
1
-6/+7
*
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner
2018-11-21
1
-0/+1
*
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner
2018-11-12
1
-2/+2
[next]