| Commit message (Expand) | Author | Age | Files | Lines |
* | GH-96187: Prevent _PyCode_GetExtra to return garbage for negative indexes (GH... | Miss Islington (bot) | 2022-08-23 | 1 | -1/+1 |
|
|
* | gh-94936: C getters: co_varnames, co_cellvars, co_freevars (GH-95008) | Miss Islington (bot) | 2022-08-04 | 1 | -0/+18 |
|
|
* | GH-95150: Use position and exception tables for code hashing and equality (GH... | Miss Islington (bot) | 2022-08-01 | 1 | -1/+18 |
|
|
* | [3.11] GH-95113: Don't use EXTENDED_ARG_QUICK in unquickened code (GH-95121) ... | Brandt Bucher | 2022-07-22 | 1 | -1/+1 |
|
|
* | [3.11] GH-95060: Fix PyCode_Addr2Location when addrq < 0 (GH-95094) | Miss Islington (bot) | 2022-07-21 | 1 | -0/+1 |
|
|
* | [3.11] GH-94262: Don't create frame objects for frames that aren't yet comple... | Miss Islington (bot) | 2022-07-04 | 1 | -6/+5 |
|
|
* | [3.11] GH-93516: Backport GH-93769 (GH-94231) | Mark Shannon | 2022-06-28 | 1 | -0/+6 |
|
|
* | gh-88116: Avoid undefined behavior when decoding varints in code objects (GH-... | Miss Islington (bot) | 2022-06-28 | 1 | -8/+8 |
|
|
* | [3.11] gh-93382: Cache result of `PyCode_GetCode` in codeobject (GH-93383) (#... | Ken Jin | 2022-06-23 | 1 | -0/+8 |
|
|
* | [3.11] GH-93516: Backport GH-93769: Speedup line number checks when tracing (... | Mark Shannon | 2022-06-22 | 1 | -0/+56 |
|
|
* | GH-93249: relax overly strict assertion on bounds->ar_start (GH-93961) (GH-94... | Miss Islington (bot) | 2022-06-20 | 1 | -1/+6 |
|
|
* | gh-92031: Deoptimize Static Code at Finalization (GH-92039) | Dennis Sweeney | 2022-05-03 | 1 | -10/+17 |
|
|
* | gh-92154: Expose PyCode_GetCode in the C API (GH-92168) | Ken Jin | 2022-05-03 | 1 | -0/+5 |
|
|
* | gh-91719: Add pycore_opcode.h internal header file (#91906) | Victor Stinner | 2022-04-25 | 1 | -0/+1 |
|
|
* | GH-88116: Document that PyCodeNew is dangerous, and make PyCode_NewEmpty less... | Mark Shannon | 2022-04-21 | 1 | -1/+15 |
|
|
* | GH-88116: Use a compact format to represent end line and column offsets. (GH-... | Mark Shannon | 2022-04-21 | 1 | -169/+318 |
|
|
* | bpo-35134: Remove the Include/code.h header file (GH-32385) | Victor Stinner | 2022-04-07 | 1 | -1/+0 |
|
|
* | bpo-46841: Use a `bytes` object for `_co_code_adaptive` (GH-32205) | Brandt Bucher | 2022-04-01 | 1 | -2/+2 |
|
|
* | bpo-46841: Avoid unnecessary allocations in code object comparisons (GH-32222) | Brandt Bucher | 2022-04-01 | 1 | -13/+13 |
|
|
* | bpo-46841: Quicken code in-place (GH-31888) | Brandt Bucher | 2022-03-21 | 1 | -112/+101 |
|
|
* | bpo-46841: Use inline caching for calls (GH-31709) | Brandt Bucher | 2022-03-07 | 1 | -4/+1 |
|
|
* | Propagate errors (however unlikely) from _Py_Deepfreeze_Init() (GH-31596) | Kumar Aditya | 2022-02-26 | 1 | -5/+11 |
|
|
* | bpo-45316: Move private PyCode C API to internal C API (GH-31576) | Victor Stinner | 2022-02-25 | 1 | -9/+9 |
|
|
* | Add (undocumented) _co_quickened attribute for code object. (GH-31552) | Mark Shannon | 2022-02-24 | 1 | -2/+13 |
|
|
* | bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects... | Eric Snow | 2022-02-23 | 1 | -6/+1 |
|
|
* | bpo-46745: Fix typo in PositionsIterator (#31322) | Robert-André Mauchin | 2022-02-17 | 1 | -1/+1 |
|
|
* | bpo-46430: Intern strings in deep-frozen modules (GH-30683) | Kumar Aditya | 2022-02-09 | 1 | -0/+12 |
|
|
* | bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965) | Christian Heimes | 2022-01-27 | 1 | -5/+8 |
|
|
* | bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853) | Kumar Aditya | 2022-01-27 | 1 | -0/+15 |
|
|
* | bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886) | Victor Stinner | 2021-12-02 | 1 | -1/+1 |
|
|
* | bpo-44530: Reverts a change to the 'code.__new__' audit event (GH-29809) | Steve Dower | 2021-11-27 | 1 | -4/+4 |
|
|
* | bpo-45355: More use of sizeof(_Py_CODEUNIT) (GH-28720) | Serhiy Storchaka | 2021-10-04 | 1 | -10/+6 |
|
|
* | Fix a SystemError in code.replace() (#27771) | Guido van Rossum | 2021-08-16 | 1 | -3/+5 |
|
|
* | Remove legacy opcache structs (GH-27164) | Ken Jin | 2021-07-16 | 1 | -1/+1 |
|
|
* | bpo-43950: Add option to opt-out of PEP-657 (GH-27023) | Ammar Askar | 2021-07-07 | 1 | -10/+37 |
|
|
* | bpo-44530: Add co_qualname field to PyCodeObject (GH-26941) | Gabriele N. Tornetta | 2021-07-07 | 1 | -20/+36 |
|
|
* | bpo-43950: use 0-indexed column offsets for bytecode positions (GH-27011) | Batuhan Taskaya | 2021-07-04 | 1 | -11/+8 |
|
|
* | bpo-43950: Add code.co_positions (PEP 657) (GH-26955) | Pablo Galindo | 2021-07-02 | 1 | -8/+211 |
|
|
* | bpo-43693 Get rid of CO_NOFREE -- it's unused (GH-26839) | Guido van Rossum | 2021-06-23 | 1 | -7/+0 |
|
|
* | bpo-43693: Turn localspluskinds into an object (GH-26749) | Guido van Rossum | 2021-06-21 | 1 | -19/+24 |
|
|
* | bpo-43693: Eliminate unused "fast locals". (gh-26587) | Eric Snow | 2021-06-15 | 1 | -74/+36 |
|
|
* | bpo-44338: Port LOAD_GLOBAL to PEP 659 adaptive interpreter (GH-26638) | Mark Shannon | 2021-06-14 | 1 | -68/+6 |
|
|
* | Add more const modifiers. (GH-26691) | Serhiy Storchaka | 2021-06-12 | 1 | -3/+3 |
|
|
* | bpo-43693: Un-revert commits 2c1e258 and b2bf2bc. (gh-26577) | Eric Snow | 2021-06-07 | 1 | -71/+348 |
|
|
* | bpo-44187: Quickening infrastructure (GH-26264) | Mark Shannon | 2021-06-07 | 1 | -1/+9 |
|
|
* | bpo-43693: Revert commits 2c1e2583fdc4db6b43d163239ea42b0e8394171f and b2bf2b... | Pablo Galindo | 2021-06-04 | 1 | -339/+70 |
|
|
* | bpo-43693: Compute deref offsets in compiler (gh-25152) | Mark Shannon | 2021-06-04 | 1 | -7/+2 |
|
|
* | bpo-43693: Add new internal code objects fields: co_fastlocalnames and co_fas... | Eric Snow | 2021-06-03 | 1 | -70/+344 |
|
|
* | bpo-43693: Add _PyCode_New(). (gh-26375) | Eric Snow | 2021-05-27 | 1 | -147/+206 |
|
|
* | bpo-43693: Clean up the PyCodeObject fields. (GH-26364) | Eric Snow | 2021-05-26 | 1 | -21/+30 |
|
|