summaryrefslogtreecommitdiffstats
path: root/Objects/codeobject.c
Commit message (Expand)AuthorAgeFilesLines
* GH-100117: Make `co_lines` more efficient (GH-100447)Brandt Bucher2023-01-101-32/+18
* GH-100719: Remove the `co_nplaincellvars` field from code objects. (GH-100721)Mark Shannon2023-01-041-10/+4
* gh-94155: Reduce hash collisions for code objects (#100183)Dennis Sweeney2022-12-231-20/+33
* GH-100000: Cleanup and polish various watchers code (GH-99998)Itamar Ostricher2022-12-141-4/+11
* GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...Mark Shannon2022-12-141-5/+6
* GH-98522: Add version number to code objects. (GH-98525)Mark Shannon2022-12-091-2/+4
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+63
* gh-99845: Clean up _PyObject_VAR_SIZE() usage (#99847)Victor Stinner2022-11-291-6/+4
* gh-99300: Use Py_NewRef() in Objects/ directory (#99332)Victor Stinner2022-11-101-34/+17
* GH-96421: Insert shim frame on entry to interpreter (GH-96319)Mark Shannon2022-11-101-0/+75
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-10/+6
* gh-95756: Free and NULL-out code caches when needed (GH-98181)Ken Jin2022-10-111-0/+1
* gh-95756: Lazily created cached co_* attrs (GH-97791)Ken Jin2022-10-111-10/+67
* GH-97779: Ensure that *all* frame objects are backed by "complete" frames (GH...Brandt Bucher2022-10-051-3/+19
* gh-94808: `_PyLineTable_StartsLine` was not used (GH-96609)Nikita Sobolev2022-10-031-27/+0
* GH-96187: Prevent _PyCode_GetExtra to return garbage for negative indexes (GH...Pablo Galindo Salgado2022-08-231-1/+1
* gh-94936: C getters: co_varnames, co_cellvars, co_freevars (#95008)Ken Jin2022-08-041-0/+18
* GH-95150: Use position and exception tables for code hashing and equality (GH...Brandt Bucher2022-08-011-1/+18
* GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121)Brandt Bucher2022-07-221-1/+1
* Fix PyCode_Addr2Location when addrq < 0 (GH-95091)Ken Jin2022-07-211-0/+1
* GH-94262: Don't create frame objects for frames that aren't yet complete. (GH...Mark Shannon2022-07-011-6/+5
* gh-88116: Avoid undefined behavior when decoding varints in code objects (#94...Pablo Galindo Salgado2022-06-281-8/+8
* gh-93382: Sync up `co_code` changes with 3.11 (GH-94227)Ken Jin2022-06-241-1/+1
* GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961)Irit Katriel2022-06-201-1/+6
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-201-0/+56
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-201-0/+2
* GH-93516: Store offset of first traceable instruction in code object (GH-93769)Mark Shannon2022-06-141-0/+6
* gh-93728: fix memory leak in deepfrozen code objects (GH-93729)Kumar Aditya2022-06-121-0/+1
* gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383)Ken Jin2022-06-031-0/+7
* GH-92955: fix memory leak in code object lines and positions iterators (gh-92...Kumar Aditya2022-05-191-4/+4
* gh-92031: Deoptimize Static Code at Finalization (GH-92039)Dennis Sweeney2022-05-031-10/+17
* gh-92154: Expose PyCode_GetCode in the C API (GH-92168)Ken Jin2022-05-031-0/+5
* gh-91719: Add pycore_opcode.h internal header file (#91906)Victor Stinner2022-04-251-0/+1
* GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less...Mark Shannon2022-04-211-1/+15
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-211-169/+318
* bpo-35134: Remove the Include/code.h header file (GH-32385)Victor Stinner2022-04-071-1/+0
* bpo-46841: Use a `bytes` object for `_co_code_adaptive` (GH-32205)Brandt Bucher2022-04-011-2/+2
* bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222)Brandt Bucher2022-04-011-13/+13
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-211-112/+101
* bpo-46841: Use inline caching for calls (GH-31709)Brandt Bucher2022-03-071-4/+1
* Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596)Kumar Aditya2022-02-261-5/+11
* bpo-45316: Move private PyCode C API to internal C API (GH-31576)Victor Stinner2022-02-251-9/+9
* Add (undocumented) _co_quickened attribute for code object. (GH-31552)Mark Shannon2022-02-241-2/+13
* bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...Eric Snow2022-02-231-6/+1
* bpo-46745: Fix typo in PositionsIterator (#31322)Robert-André Mauchin2022-02-171-1/+1
* bpo-46430: Intern strings in deep-frozen modules (GH-30683)Kumar Aditya2022-02-091-0/+12
* bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)Christian Heimes2022-01-271-5/+8
* bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)Kumar Aditya2022-01-271-0/+15
* bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner2021-12-021-1/+1
* bpo-44530: Reverts a change to the 'code.__new__' audit event (GH-29809)Steve Dower2021-11-271-4/+4