aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Objects/codeobject.c
Commit message (Expand)AuthorAge
* GH-127953: Make line number lookup O(1) regardless of the size of the code ob...Mark Shannon2025-01-21
* gh-111178: Generate correct signature for most self converters (#128447)Erlend E. Aasland2025-01-20
* gh-128923: Use zero to indicate unassigned unique id (#128925)Sam Gross2025-01-17
* gh-111178: fix UBSan failures in `Objects/codeobject.c` (GH-128240)Bénédikt Tran2025-01-13
* GH-122548: Implement branch taken and not taken events for sys.monitoring (GH...Mark Shannon2024-12-19
* gh-127582: Make object resurrection thread-safe for free threading. (GH-127612)Sam Gross2024-12-05
* gh-114940: Add _Py_FOR_EACH_TSTATE_UNLOCKED(), and Friends (gh-127077)Eric Snow2024-11-21
* gh-127020: Make `PyCode_GetCode` thread-safe for free threading (#127043)Sam Gross2024-11-21
* gh-126298: Don't deduplicate slice constants based on equality (#126398)Michael Droettboom2024-11-07
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-04
* gh-125900: Clean-up logic around immortalization in free-threading (#125901)Sam Gross2024-10-24
* gh-124218: Use per-thread refcounts for code objects (#125216)Sam Gross2024-10-15
* gh-111178: Fix function signatures in codeobject.c (#125180)Victor Stinner2024-10-09
* gh-125063: Emit slices as constants in the bytecode compiler (#125064)Michael Droettboom2024-10-08
* gh-122854: Add Py_HashBuffer() function (#122855)Victor Stinner2024-08-30
* GH-122390: Replace `_Py_GetbaseOpcode` with `_Py_GetBaseCodeUnit` (GH-122942)Mark Shannon2024-08-13
* Replace PyObject_Del with PyObject_Free (#122453)Victor Stinner2024-08-01
* gh-121863: Immortalize names in code objects to avoid crash (GH-121903)Petr Viktorin2024-07-17
* Fix typos in comments (#120821)Xie Yanbo2024-06-24
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-24
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-21
* gh-117657: Fix race involving immortalizing objects (#119927)Sam Gross2024-06-03
* gh-119180: Add LOAD_COMMON_CONSTANT opcode (#119321)Jelle Zijlstra2024-05-22
* gh-111389: Add PyHASH_MULTIPLIER constant (#119214)Victor Stinner2024-05-21
* gh-118527: Intern code consts in free-threaded build (#118667)Sam Gross2024-05-06
* gh-118527: Intern code name and filename on default build (#118576)Sam Gross2024-05-06
* gh-118527: Intern filename, name, and qualname in code objects. (#118558)Sam Gross2024-05-03
* gh-117657: Disable the function/code cache in free-threaded builds (#118301)mpage2024-05-03
* GH-118095: Make invalidating and clearing executors memory safe (GH-118459)Mark Shannon2024-05-01
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-04-30
* gh-117376: Make code objects use deferred reference counting (#117823)Sam Gross2024-04-16
* gh-117764: Add docstrings and signatures for the __replace__ methods (GH-117768)Serhiy Storchaka2024-04-12
* gh-108716:: Remove _PyStaticCode_Init/Fini (#117141)Guido van Rossum2024-03-22
* gh-117045: Add code object to function version cache (#117028)Guido van Rossum2024-03-21
* gh-116916: Remove separate next_func_version counter (#116918)Guido van Rossum2024-03-18
* GH-114695: Add `sys._clear_internal_caches` (GH-115152)Brandt Bucher2024-02-12
* gh-110543: Fix CodeType.replace in presence of comprehensions (#110586)Jelle Zijlstra2023-11-08
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-02
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-02
* GH-107265: Add missing deoptimizations for ENTER_EXECUTOR's original opcode (...Tian Gao2023-09-22
* gh-109052: Use the base opcode when comparing code objects (gh-109107)Tian Gao2023-09-09
* GH-108716: Turn off deep-freezing of code objects. (GH-108722)Mark Shannon2023-09-08
* gh-107265: Remove all ENTER_EXECUTOR when execute _Py_Instrument (gh-108539)Dong-hee Na2023-09-07
* gh-108751: Add copy.replace() function (GH-108752)Serhiy Storchaka2023-09-06
* gh-105481: remove regen-opcode. Generated _PyOpcode_Caches in regen-cases. (#...Irit Katriel2023-08-23
* gh-107265: Fix code_hash for ENTER_EXECUTOR case (#108188)Dong-hee Na2023-08-21
* gh-107265: Fix code_richcompare for ENTER_EXECUTOR case (gh-108165)Dong-hee Na2023-08-21
* gh-106581: Project through calls (#108067)Guido van Rossum2023-08-17
* gh-105481: generate op IDs from bytecode.c instead of hard coding them in opc...Irit Katriel2023-08-16
* gh-86457: Fix signature for code.replace() (GH-23199)Serhiy Storchaka2023-08-07