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-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
*
GH-126599: Remove the "counter" optimizer/executor (GH-126853)
Xuanteng Huang
2025-01-16
1
-2/+0
*
gh-126703: Add freelist for `PyMethodObject` (#128594)
Pieter Eendebak
2025-01-12
1
-0/+1
*
gh-128100: Use atomic dictionary load in `_PyObject_GenericGetAttrWithDict` (...
Bogdan Romanyuk
2024-12-30
1
-0/+4
*
gh-126868: Add freelist for compact int objects (GH-126865)
Pieter Eendebak
2024-12-13
1
-0/+1
*
GH-125174: Mark objects as statically allocated. (#127797)
Mark Shannon
2024-12-11
1
-1/+11
*
gh-127582: Make object resurrection thread-safe for free threading. (GH-127612)
Sam Gross
2024-12-05
1
-5/+35
*
gh-114940: Add _Py_FOR_EACH_TSTATE_UNLOCKED(), and Friends (gh-127077)
Eric Snow
2024-11-21
1
-1/+1
*
gh-126076: Account for relocated objects in tracemalloc (#126077)
Pablo Galindo Salgado
2024-11-19
1
-15/+2
*
gh-123619: Add an unstable C API function for enabling deferred reference cou...
Peter Bierma
2024-11-13
1
-0/+29
*
gh-125286: Share the Main Refchain With Legacy Interpreters (gh-125709)
Eric Snow
2024-10-23
1
-48/+44
*
gh-125604: Move _Py_AuditHookEntry, etc. Out of pycore_runtime.h (gh-125605)
Eric Snow
2024-10-18
1
-0/+1
*
gh-125221: Fix free-threading data race in `object.__reduce_ex__` (#125267)
Sam Gross
2024-10-11
1
-0/+8
*
GH-125174: Make immortal objects more robust, following design from PEP 683 (...
Mark Shannon
2024-10-10
1
-1/+1
*
gh-125196: Add a free list to PyUnicodeWriter (#125227)
Victor Stinner
2024-10-10
1
-0/+1
*
gh-116510: Fix a Crash Due to Shared Immortal Interned Strings (gh-124865)
Eric Snow
2024-10-09
1
-0/+36
*
gh-124127: Make Py_REFCNT() opaque in limited C API 3.14 (#124128)
Victor Stinner
2024-09-24
1
-1/+11
*
gh-123990: Good bye WITH_FREELISTS macro (gh-124358)
Donghee Na
2024-09-24
1
-5/+0
*
gh-123448: Move `_PyNoDefault_Type` to the static types array (#123449)
Peter Bierma
2024-08-29
1
-0/+1
*
Fix typos in comments (#123201)
Wulian
2024-08-21
1
-3/+3
*
gh-122417: Implement per-thread heap type refcounts (#122418)
Sam Gross
2024-08-06
1
-9/+1
*
gh-116622: Fix testPyObjectPrintOSError on Android (#122487)
Malcolm Smith
2024-07-31
1
-2/+9
*
gh-120974: Use common freelist code in asyncio (#122132)
Sam Gross
2024-07-23
1
-1/+4
*
gh-100240: Use a consistent implementation for freelists (#121934)
Sam Gross
2024-07-22
1
-10/+45
*
gh-121794: Don't set `ob_tid` to zero in fast-path dealloc (#121799)
Sam Gross
2024-07-15
1
-2/+6
*
gh-120686: remove unused internal c api functions (#120687)
Irit Katriel
2024-06-27
1
-11/+0
*
gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...
Petr Viktorin
2024-06-21
1
-1/+9
*
gh-117511: Make PyMutex public in the non-limited API (#117731)
Sam Gross
2024-06-20
1
-1/+1
*
gh-120600: Make Py_TYPE() opaque in limited C API 3.14 (#120601)
Victor Stinner
2024-06-18
1
-0/+8
*
gh-119999: Fix potential race condition in `_Py_ExplicitMergeRefcount` (#120000)
Sam Gross
2024-06-04
1
-8/+11
*
gh-117398: Use Per-Interpreter State for the _datetime Static Types (gh-119929)
Eric Snow
2024-06-03
1
-1/+1
*
gh-117657: Fix race involving immortalizing objects (#119927)
Sam Gross
2024-06-03
1
-1/+1
*
gh-117657: Fix data races when writing / reading `ob_gc_bits` (#118292)
mpage
2024-05-08
1
-1/+1
*
gh-118767: Make bool(NotImplemented) raise TypeError (#118775)
Jelle Zijlstra
2024-05-08
1
-7/+3
[next]