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
/
Objects
/
object.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-142217: Deprecate the private _Py_Identifier C API (#142221)
Victor Stinner
2025-12-12
1
-0/+3
*
gh-142589: Fix PyUnstable_Object_IsUniqueReferencedTemporary (gh-142593)
Sam Gross
2025-12-11
1
-2/+6
*
gh-139165: Make Py_SIZE, Py_IS_TYPE,Py_ SET_SIZE regular functions in stable ...
Petr Viktorin
2025-11-25
1
-18/+13
*
gh-141070: Add PyUnstable_Object_Dump() function (#141072)
Victor Stinner
2025-11-18
1
-2/+2
*
GH-138355: Remove trash_delete_later from _gc_runtime_state (#138767)
Sergey Miryanov
2025-09-17
1
-2/+2
*
gh-137992: fix `PyRefTracer_SetTracer` to start world before returning (#138...
Kumar Aditya
2025-09-15
1
-0/+1
*
gh-137992: Stop the world when calling PyRefTracer_SetTracer (#137994)
Pablo Galindo Salgado
2025-09-15
1
-0/+3
*
gh-138794: Communicate to PyRefTracer when they are being replaced (#138797)
Pablo Galindo Salgado
2025-09-15
1
-0/+6
*
gh-129813, PEP 782: Add PyBytesWriter C API (#138822)
Victor Stinner
2025-09-12
1
-0/+1
*
gh-138342: Use a common utility for visiting an object's type (GH-138343)
Peter Bierma
2025-09-01
1
-0/+10
*
gh-130821: Add type information to error messages for invalid return type (GH...
Semyon Moroz
2025-08-14
1
-6/+4
*
gh-134043: use stackrefs for dict lookup in `_PyObject_GetMethodStackRef` (#1...
Kumar Aditya
2025-07-28
1
-12/+7
*
gh-135075: Make PyObject_SetAttr() fail with NULL value and exception (#136180)
Victor Stinner
2025-07-03
1
-9/+29
*
gh-136017: avoid decref in rich compare for bool objects (#136018)
Pieter Eendebak
2025-06-27
1
-3/+6
*
GH-135106: Restrict trashcan to GC'ed objects (GH-135682)
Mark Shannon
2025-06-24
1
-52/+24
*
gh-135443: Sometimes Fall Back to __main__.__dict__ For Globals (gh-135491)
Eric Snow
2025-06-16
1
-2/+18
*
gh-126703: Add freelist for PyComplexObject's (gh-135233)
Sergey B Kirpichev
2025-06-13
1
-0/+1
*
GH-133912: Fix `PyObject_GenericSetDict` to handle inline values (GH-134725)
Mark Shannon
2025-05-28
1
-30/+1
*
gh-134043: use stackrefs in vectorcalling methods (#134044)
Kumar Aditya
2025-05-27
1
-0/+110
*
gh-133980: use atomic store in `PyObject_GenericSetDict` (#133988)
Kumar Aditya
2025-05-20
1
-1/+7
*
GH-133261: Make sure trashcan pointers look mortal -- 32 bit (GH-133450)
Mark Shannon
2025-05-05
1
-0/+9
*
gh-133140: Add `PyUnstable_Object_IsUniquelyReferenced` for free-threading (#...
Peter Bierma
2025-05-05
1
-0/+8
*
GH-133261: Make sure that the GC doesn't untrack objects in trashcan (GH-133431)
Mark Shannon
2025-05-05
1
-6/+32
*
gh-133164: Add `PyUnstable_Object_IsUniqueReferencedTemporary` C API (gh-133170)
Sam Gross
2025-05-02
1
-0/+24
*
GH-124715: Move trashcan mechanism into `Py_Dealloc` (GH-132280)
Mark Shannon
2025-04-30
1
-5/+26
*
gh-132661: Implement PEP 750 (#132662)
Lysandros Nikolaou
2025-04-30
1
-0/+5
*
gh-126703: Add freelist for range and range_iter objects (GH-128619)
Pieter Eendebak
2025-04-06
1
-0/+2
*
gh-126703: Add PyCFunction freelist (GH-128692)
Pieter Eendebak
2025-04-05
1
-0/+2
*
gh-111178: remove redundant casts for functions with correct signatures (#131...
Bénédikt Tran
2025-04-01
1
-2/+2
*
gh-131586: Avoid refcount contention in some "special" calls (#131588)
Sam Gross
2025-03-26
1
-8/+20
*
gh-131238: Remove includes from pycore_interp.h (#131495)
Victor Stinner
2025-03-20
1
-8/+7
*
gh-131238: Remove many includes from pycore_interp.h (#131472)
Victor Stinner
2025-03-19
1
-3/+5
*
GH-131238: Core header refactor (GH-131250)
Mark Shannon
2025-03-17
1
-0/+1
*
GH-127705: Use `_PyStackRef`s in the default build. (GH-127875)
Mark Shannon
2025-03-10
1
-0/+3
*
GH-127705: better double free message. (GH-130785)
Mark Shannon
2025-03-05
1
-1/+1
*
gh-130202: Fix bug in `_PyObject_ResurrectEnd` in free threaded build (gh-130...
Sam Gross
2025-02-25
1
-14/+32
*
GH-130396: Use computed stack limits on linux (GH-130398)
Mark Shannon
2025-02-25
1
-30/+1
*
GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...
Petr Viktorin
2025-02-24
1
-1/+30
*
GH-91079: Implement C stack limits using addresses, not counters. (GH-130007)
Mark Shannon
2025-02-19
1
-30/+1
*
gh-129984: Mark immortal objects as deferred (#129985)
Dino Viehland
2025-02-13
1
-0/+1
*
GH-128682: Account for escapes in `DECREF_INPUTS` (GH-129953)
Mark Shannon
2025-02-12
1
-0/+5
*
gh-117657: Enable test_opcache under TSAN (GH-129831)
Sam Gross
2025-02-11
1
-1/+1
*
gh-117657: Fix data race in `new_reference` for free threaded build (gh-129665)
Bogdan Romanyuk
2025-02-06
1
-1/+8
*
gh-126703: Add freelists for list and tuple iterators (GH-128592)
Pieter Eendebak
2025-01-29
1
-0/+2
*
GH-126599: Remove the PyOptimizer API (GH-129194)
Brandt Bucher
2025-01-29
1
-5/+1
*
gh-128844: Make `_Py_TryIncref` public as an unstable API. (#128926)
Sam Gross
2025-01-28
1
-0/+14
*
gh-128509: Add `PyUnstable_IsImmortal` for finding immortal objects (GH-129182)
Peter Bierma
2025-01-27
1
-0/+9
*
Revert "GH-128914: Remove conditional stack effects from `bytecodes.c` and th...
Sam Gross
2025-01-23
1
-1/+1
*
GH-128914: Remove conditional stack effects from `bytecodes.c` and the code g...
Mark Shannon
2025-01-20
1
-1/+1
*
gh-128360: Add `_Py_AssertHoldsTstate` as assertion for holding a thread stat...
Peter Bierma
2025-01-20
1
-2/+2
[next]