summaryrefslogtreecommitdiffstats
path: root/Include/cpython/code.h
Commit message (Expand)AuthorAgeFilesLines
* [3.13] gh-120642: Move private PyCode APIs to the internal C API (#120643) (#...Victor Stinner2024-06-261-52/+0
* gh-116767: fix crash on 'async with' with many context managers (GH-118348)Irit Katriel2024-05-011-1/+1
* gh-116968: Reimplement Tier 2 counters (#117144)Guido van Rossum2024-04-041-0/+11
* gh-115756: make PyCode_GetFirstFree an unstable API (GH-115781)Bogdan Romanyuk2024-03-191-1/+5
* chore: fix typos (#116345)cui fliter2024-03-051-1/+1
* GH-113486: Do not emit spurious PY_UNWIND events for optimized calls to class...Mark Shannon2024-01-051-0/+2
* GH-109369: Merge all eval-breaker flags and monitoring version into one word....Mark Shannon2023-10-041-1/+1
* GH-108390: Prevent non-local events being set with `sys.monitoring.set_local_...Mark Shannon2023-09-051-6/+11
* GH-106897: Add `RERAISE` event to `sys.monitoring`. (GH-107291)Mark Shannon2023-07-271-2/+2
* GH-103082: Rename PY_MONITORING_EVENTS to _PY_MONITORING_EVENTS (#107069)Victor Stinner2023-07-221-3/+3
* GH-104584: Plugin optimizer API (GH-105100)Mark Shannon2023-06-021-0/+8
* GH-103082: Implementation of PEP 669: Low Impact Monitoring for CPython (GH-1...Mark Shannon2023-04-121-2/+43
* gh-102381: don't call watcher callback with dead object (#102382)Carl Meyer2023-03-081-4/+9
* gh-101101: Unstable C API tier (PEP 689) (GH-101102)Petr Viktorin2023-02-281-8/+39
* gh-101907: Stop using `_Py_OPCODE` and `_Py_OPARG` macros (GH-101912)Steve Dower2023-02-201-7/+21
* GH-100719: Remove the `co_nplaincellvars` field from code objects. (GH-100721)Mark Shannon2023-01-041-1/+5
* GH-100222: fix typo _py_set_opocde -> _py_set_opcode (GH-100259)Carl Meyer2022-12-151-1/+1
* GH-100222: Redefine _Py_CODEUNIT as a union to clarify structure of code unit...Mark Shannon2022-12-141-14/+17
* GH-98522: Add version number to code objects. (GH-98525)Mark Shannon2022-12-091-0/+1
* GH-91054: Add code object watchers API (GH-99859)Itamar Ostricher2022-12-021-0/+35
* Use _Py_RVALUE() in macros (#99844)Victor Stinner2022-11-281-1/+1
* gh-89653: PEP 670: Convert macros to functions (#99843)Victor Stinner2022-11-281-1/+6
* GH-98686: Quicken everything (GH-98687)Brandt Bucher2022-11-021-1/+0
* gh-95756: Lazily created cached co_* attrs (GH-97791)Ken Jin2022-10-111-1/+8
* gh-94936: C getters: co_varnames, co_cellvars, co_freevars (#95008)Ken Jin2022-08-041-0/+6
* gh-93382: Sync up `co_code` changes with 3.11 (GH-94227)Ken Jin2022-06-241-1/+1
* gh-87347: Add parenthesis around macro arguments (#93915)Victor Stinner2022-06-201-1/+2
* GH-93516: Speedup line number checks when tracing. (GH-93763)Mark Shannon2022-06-201-1/+3
* GH-93897: Store frame size in code object and de-opt if insufficient space on...Mark Shannon2022-06-201-2/+2
* gh-87347: Add parenthesis around PyXXX_Check() arguments (#92815)Victor Stinner2022-06-161-1/+1
* GH-93516: Store offset of first traceable instruction in code object (GH-93769)Mark Shannon2022-06-141-0/+1
* gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383)Ken Jin2022-06-031-0/+1
* gh-92154: Expose PyCode_GetCode in the C API (GH-92168)Ken Jin2022-05-031-0/+3
* GH-88116: Use a compact format to represent end line and column offsets. (GH-...Mark Shannon2022-04-211-13/+19
* bpo-35134: Remove the Include/code.h header file (GH-32385)Victor Stinner2022-04-071-2/+13
* bpo-46841: Quicken code in-place (GH-31888)Brandt Bucher2022-03-211-83/+74
* bpo-46841: Add a _Py_SET_OPCODE macro (GH-31780)Brandt Bucher2022-03-121-0/+3
* bpo-46841: Use inline caching for calls (GH-31709)Brandt Bucher2022-03-071-1/+1
* bpo-45316: Move private PyCode C API to internal C API (GH-31576)Victor Stinner2022-02-251-19/+0
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-251-1/+1
* Remove legacy opcache structs (GH-27164)Ken Jin2021-07-161-2/+0
* bpo-44530: Add co_qualname field to PyCodeObject (GH-26941)Gabriele N. Tornetta2021-07-071-4/+5
* bpo-43950: Add code.co_positions (PEP 657) (GH-26955)Pablo Galindo2021-07-021-4/+21
* bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839)Guido van Rossum2021-06-231-6/+0
* bpo-43693: Turn localspluskinds into an object (GH-26749)Guido van Rossum2021-06-211-5/+1
* bpo-43693: Eliminate unused "fast locals". (gh-26587)Eric Snow2021-06-151-6/+2
* bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638)Mark Shannon2021-06-141-14/+0
* Add more const modifiers. (GH-26691)Serhiy Storchaka2021-06-121-3/+3
* bpo-43693: Un-revert commit f3fa63e. (#26609)Eric Snow2021-06-081-2/+9
* Revert "bpo-43693: Add the MAKE_CELL opcode and interleave fast locals offset...Pablo Galindo2021-06-081-9/+2