summaryrefslogtreecommitdiffstats
path: root/Objects/codeobject.c
Commit message (Expand)AuthorAgeFilesLines
* gh-139109: A new tracing JIT compiler frontend for CPython (GH-140310)Ken Jin2025-11-131-0/+1
* gh-140815: Fix faulthandler for invalid/freed frame (#140921)Victor Stinner2025-11-041-3/+20
* gh-138661: fix data race in `PyCode_Addr2Line` (#138664)Kumar Aditya2025-09-121-1/+11
* GH-137623: Use an AC decorator for docstring line length enforcement (#137690)Adam Turner2025-08-181-1/+2
* gh-137514: Add a free-threading wrapper for mutexes (GH-137515)Peter Bierma2025-08-071-13/+5
* gh-136396: Include instrumentation when creating new copies of the bytecode (...mpage2025-07-141-1/+18
* gh-135607: remove null checking of weakref list in dealloc of extension modul...Xuanteng Huang2025-06-301-3/+2
* GH-133136: Revise QSBR to reduce excess memory held (gh-135473)Neil Schemenauer2025-06-251-1/+1
* gh-135450: Remove assertion in `_PyCode_CheckNoExternalState` (gh-135466)Peter Bierma2025-06-181-1/+0
* gh-135437: Account For Duplicate Names in _PyCode_SetUnboundVarCounts() (gh-1...Eric Snow2025-06-131-5/+25
* gh-91048: Refactor and optimize remote debugging module (#134652)Pablo Galindo Salgado2025-05-251-0/+2
* gh-132775: Unrevert "Add _PyCode_VerifyStateless()" (gh-133528)Eric Snow2025-05-081-17/+151
* gh-132775: Revert "gh-132775: Add _PyCode_VerifyStateless() (gh-133221)" (#13...Petr Viktorin2025-05-061-155/+17
* gh-132775: Add _PyCode_VerifyStateless() (gh-133221)Eric Snow2025-05-051-17/+155
* gh-132775: Unrevert "Add _PyCode_GetVarCounts()" (gh-133265)Eric Snow2025-05-051-3/+278
* Revert "gh-132775: Add _PyCode_GetVarCounts() (gh-133128)" (gh-133232)Eric Snow2025-05-011-235/+0
* gh-132775: Add _PyCode_GetVarCounts() (gh-133128)Eric Snow2025-04-301-0/+235
* gh-132775: Add _PyCode_ReturnsOnlyNone() (gh-132981)Eric Snow2025-04-291-0/+43
* gh-132399: fix invalid function signatures on the free-threaded build (#132400)Bénédikt Tran2025-04-121-2/+3
* gh-131238: Remove pycore_object_deferred.h from pycore_object.h (#131549)Victor Stinner2025-03-211-0/+1
* GH-131498: Remove conditional stack effects (GH-131499)Mark Shannon2025-03-201-0/+1
* gh-131238: Remove includes from pycore_interp.h (#131495)Victor Stinner2025-03-201-6/+4
* gh-131238: Remove more includes from pycore_interp.h (#131480)Victor Stinner2025-03-191-1/+3
* gh-111178: Fix function signatures to fix undefined behavior (#131191)Victor Stinner2025-03-141-1/+2
* gh-130851: Only intern constants of types generated by the compiler (#130901)Sam Gross2025-03-071-2/+41
* gh-130851: Don't crash when deduping unusual code constants (#130853)Sam Gross2025-03-051-6/+12
* Postpone <stdbool.h> inclusion after Python.h (#130641)Hugo Beauzée-Luyssen2025-02-281-2/+2
* GH-128872: Remove unused argument from _PyCode_Quicken (GH-128873)Yan Yanchii2025-02-021-6/+4
* GH-127953: Make line number lookup O(1) regardless of the size of the code ob...Mark Shannon2025-01-211-0/+3
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-201-15/+15
* gh-128923: Use zero to indicate unassigned unique id (#128925)Sam Gross2025-01-171-1/+1
* gh-111178: fix UBSan failures in `Objects/codeobject.c` (GH-128240)Bénédikt Tran2025-01-131-18/+22
* GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...Mark Shannon2024-12-191-0/+7
* gh-127582: Make object resurrection thread-safe for free threading. (GH-127612)Sam Gross2024-12-051-5/+2
* gh-114940: Add _Py_FOR_EACH_TSTATE_UNLOCKED(), and Friends (gh-127077)Eric Snow2024-11-211-2/+4
* gh-127020: Make `PyCode_GetCode` thread-safe for free threading (#127043)Sam Gross2024-11-211-27/+51
* gh-126298: Don't deduplicate slice constants based on equality (#126398)Michael Droettboom2024-11-071-1/+34
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-041-4/+309
* gh-125900: Clean-up logic around immortalization in free-threading (#125901)Sam Gross2024-10-241-14/+6
* gh-124218: Use per-thread refcounts for code objects (#125216)Sam Gross2024-10-151-1/+5
* gh-111178: Fix function signatures in codeobject.c (#125180)Victor Stinner2024-10-091-32/+48
* gh-125063: Emit slices as constants in the bytecode compiler (#125064)Michael Droettboom2024-10-081-0/+1
* gh-122854: Add Py_HashBuffer() function (#122855)Victor Stinner2024-08-301-2/+2
* GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)Mark Shannon2024-08-131-50/+12
* Replace PyObject_Del with PyObject_Free (#122453)Victor Stinner2024-08-011-2/+2
* gh-121863: Immortalize names in code objects to avoid crash (GH-121903)Petr Viktorin2024-07-171-1/+1
* Fix typos in comments (#120821)Xie Yanbo2024-06-241-1/+1
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-241-1/+1
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-211-6/+8
* gh-117657: Fix race involving immortalizing objects (#119927)Sam Gross2024-06-031-2/+2