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
/
codeobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-139109: A new tracing JIT compiler frontend for CPython (GH-140310)
Ken Jin
2025-11-13
1
-0/+1
*
gh-140815: Fix faulthandler for invalid/freed frame (#140921)
Victor Stinner
2025-11-04
1
-3/+20
*
gh-138661: fix data race in `PyCode_Addr2Line` (#138664)
Kumar Aditya
2025-09-12
1
-1/+11
*
GH-137623: Use an AC decorator for docstring line length enforcement (#137690)
Adam Turner
2025-08-18
1
-1/+2
*
gh-137514: Add a free-threading wrapper for mutexes (GH-137515)
Peter Bierma
2025-08-07
1
-13/+5
*
gh-136396: Include instrumentation when creating new copies of the bytecode (...
mpage
2025-07-14
1
-1/+18
*
gh-135607: remove null checking of weakref list in dealloc of extension modul...
Xuanteng Huang
2025-06-30
1
-3/+2
*
GH-133136: Revise QSBR to reduce excess memory held (gh-135473)
Neil Schemenauer
2025-06-25
1
-1/+1
*
gh-135450: Remove assertion in `_PyCode_CheckNoExternalState` (gh-135466)
Peter Bierma
2025-06-18
1
-1/+0
*
gh-135437: Account For Duplicate Names in _PyCode_SetUnboundVarCounts() (gh-1...
Eric Snow
2025-06-13
1
-5/+25
*
gh-91048: Refactor and optimize remote debugging module (#134652)
Pablo Galindo Salgado
2025-05-25
1
-0/+2
*
gh-132775: Unrevert "Add _PyCode_VerifyStateless()" (gh-133528)
Eric Snow
2025-05-08
1
-17/+151
*
gh-132775: Revert "gh-132775: Add _PyCode_VerifyStateless() (gh-133221)" (#13...
Petr Viktorin
2025-05-06
1
-155/+17
*
gh-132775: Add _PyCode_VerifyStateless() (gh-133221)
Eric Snow
2025-05-05
1
-17/+155
*
gh-132775: Unrevert "Add _PyCode_GetVarCounts()" (gh-133265)
Eric Snow
2025-05-05
1
-3/+278
*
Revert "gh-132775: Add _PyCode_GetVarCounts() (gh-133128)" (gh-133232)
Eric Snow
2025-05-01
1
-235/+0
*
gh-132775: Add _PyCode_GetVarCounts() (gh-133128)
Eric Snow
2025-04-30
1
-0/+235
*
gh-132775: Add _PyCode_ReturnsOnlyNone() (gh-132981)
Eric Snow
2025-04-29
1
-0/+43
*
gh-132399: fix invalid function signatures on the free-threaded build (#132400)
Bénédikt Tran
2025-04-12
1
-2/+3
*
gh-131238: Remove pycore_object_deferred.h from pycore_object.h (#131549)
Victor Stinner
2025-03-21
1
-0/+1
*
GH-131498: Remove conditional stack effects (GH-131499)
Mark Shannon
2025-03-20
1
-0/+1
*
gh-131238: Remove includes from pycore_interp.h (#131495)
Victor Stinner
2025-03-20
1
-6/+4
*
gh-131238: Remove more includes from pycore_interp.h (#131480)
Victor Stinner
2025-03-19
1
-1/+3
*
gh-111178: Fix function signatures to fix undefined behavior (#131191)
Victor Stinner
2025-03-14
1
-1/+2
*
gh-130851: Only intern constants of types generated by the compiler (#130901)
Sam Gross
2025-03-07
1
-2/+41
*
gh-130851: Don't crash when deduping unusual code constants (#130853)
Sam Gross
2025-03-05
1
-6/+12
*
Postpone <stdbool.h> inclusion after Python.h (#130641)
Hugo Beauzée-Luyssen
2025-02-28
1
-2/+2
*
GH-128872: Remove unused argument from _PyCode_Quicken (GH-128873)
Yan Yanchii
2025-02-02
1
-6/+4
*
GH-127953: Make line number lookup O(1) regardless of the size of the code ob...
Mark Shannon
2025-01-21
1
-0/+3
*
gh-111178: Generate correct signature for most self converters (#128447)
Erlend E. Aasland
2025-01-20
1
-15/+15
*
gh-128923: Use zero to indicate unassigned unique id (#128925)
Sam Gross
2025-01-17
1
-1/+1
*
gh-111178: fix UBSan failures in `Objects/codeobject.c` (GH-128240)
Bénédikt Tran
2025-01-13
1
-18/+22
*
GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...
Mark Shannon
2024-12-19
1
-0/+7
*
gh-127582: Make object resurrection thread-safe for free threading. (GH-127612)
Sam Gross
2024-12-05
1
-5/+2
*
gh-114940: Add _Py_FOR_EACH_TSTATE_UNLOCKED(), and Friends (gh-127077)
Eric Snow
2024-11-21
1
-2/+4
*
gh-127020: Make `PyCode_GetCode` thread-safe for free threading (#127043)
Sam Gross
2024-11-21
1
-27/+51
*
gh-126298: Don't deduplicate slice constants based on equality (#126398)
Michael Droettboom
2024-11-07
1
-1/+34
*
gh-115999: Implement thread-local bytecode and enable specialization for `BIN...
mpage
2024-11-04
1
-4/+309
*
gh-125900: Clean-up logic around immortalization in free-threading (#125901)
Sam Gross
2024-10-24
1
-14/+6
*
gh-124218: Use per-thread refcounts for code objects (#125216)
Sam Gross
2024-10-15
1
-1/+5
*
gh-111178: Fix function signatures in codeobject.c (#125180)
Victor Stinner
2024-10-09
1
-32/+48
*
gh-125063: Emit slices as constants in the bytecode compiler (#125064)
Michael Droettboom
2024-10-08
1
-0/+1
*
gh-122854: Add Py_HashBuffer() function (#122855)
Victor Stinner
2024-08-30
1
-2/+2
*
GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)
Mark Shannon
2024-08-13
1
-50/+12
*
Replace PyObject_Del with PyObject_Free (#122453)
Victor Stinner
2024-08-01
1
-2/+2
*
gh-121863: Immortalize names in code objects to avoid crash (GH-121903)
Petr Viktorin
2024-07-17
1
-1/+1
*
Fix typos in comments (#120821)
Xie Yanbo
2024-06-24
1
-1/+1
*
Fixes loop variables to be the same types as their limit (GH-120958)
Steve Dower
2024-06-24
1
-1/+1
*
gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...
Petr Viktorin
2024-06-21
1
-6/+8
*
gh-117657: Fix race involving immortalizing objects (#119927)
Sam Gross
2024-06-03
1
-2/+2
[next]