summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* bpo-46836: Rename InterpreterFrame to _PyInterpreterFrame (GH-31583)Victor Stinner2022-02-254-34/+34
* bpo-45316: Move _PyArg_Fini() to internal C API (GH-31580)Victor Stinner2022-02-252-2/+1
* bpo-45316: Move private functions to internal C API (GH-31579)Victor Stinner2022-02-256-15/+16
* bpo-45316: Move private PyDict functions to internal C API (GH-31577)Victor Stinner2022-02-252-17/+19
* bpo-45316: Move private PyCode C API to internal C API (GH-31576)Victor Stinner2022-02-252-37/+44
* bpo-46841: Use *inline* caching for `BINARY_OP` (GH-31543)Brandt Bucher2022-02-253-72/+84
* bpo-46836: Move PyFrameObject to pycore_frame.h (GH-31530)Victor Stinner2022-02-252-13/+12
* bpo-46748: Don't import <stdbool.h> in public headers (GH-31553)Petr Viktorin2022-02-252-4/+2
* bpo-46656: Remove Py_NO_NAN macro (GH-31160)Victor Stinner2022-02-252-8/+3
* bpo-45107: Specialize `LOAD_METHOD` for instances with dict. (GH-31531)Mark Shannon2022-02-242-35/+38
* bpo-46430: Fix memory leak in interned strings of deep-frozen modules (GH-31549)Kumar Aditya2022-02-241-1/+1
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-2416-55/+51
* bpo-45459: Add pytypedefs.h header file (GH-31527)Victor Stinner2022-02-2413-40/+39
* bpo-46823: Implement LOAD_FAST__LOAD_ATTR_INSTANCE_VALUE superinstruction (GH...Dennis Sweeney2022-02-241-0/+1
* bpo-44337: Shrink the LOAD_ATTR/STORE_ATTR caches (GH-31517)Brandt Bucher2022-02-231-1/+1
* bpo-45412: Add _PY_SHORT_FLOAT_REPR macro (GH-31171)Victor Stinner2022-02-233-65/+64
* bpo-46765: Replace Locally Cached Strings with Statically Initialized Objects...Eric Snow2022-02-233-2/+64
* bpo-45459: Rename buffer.h to pybuffer.h (#31201)Victor Stinner2022-02-223-3/+5
* Move call specializations from CALL to PRECALL. (GH-31496)Mark Shannon2022-02-222-44/+49
* dict: Add dk_log2_index_bytes (GH-31439)Inada Naoki2022-02-221-1/+4
* bpo-46329: Change calling sequence (again) (GH-31373)Mark Shannon2022-02-181-67/+67
* bpo-46702: Specialize UNPACK_SEQUENCE (GH-31240)Brandt Bucher2022-02-162-5/+11
* bpo-46541: Discover the global strings. (gh-31346)Eric Snow2022-02-152-13/+11
* bpo-46613: Add PyType_GetModuleByDef to the public API (GH-31081)Petr Viktorin2022-02-111-1/+1
* bpo-45490: Rename static inline functions (GH-31217)Victor Stinner2022-02-112-31/+31
* bpo-45923: Add `RESUME_QUICK` (GH-31244)Brandt Bucher2022-02-101-9/+10
* bpo-46430: Intern strings in deep-frozen modules (GH-30683)Kumar Aditya2022-02-091-0/+2
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-0813-9/+682
* bpo-46521: Fix codeop to use a new partial-input mode of the parser (GH-31010)Pablo Galindo Salgado2022-02-082-1/+5
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-081-4/+22
* bpo-46640: Py_NAN now uses the C99 NAN constant (GH-31134)Victor Stinner2022-02-061-21/+10
* bpo-46608: exclude marshalled-frozen data if deep-freezing to save 300 KB spa...Kumar Aditya2022-02-041-0/+1
* Merge remote-tracking branch 'upstream/main'Pablo Galindo2022-02-031-4/+2
|\
| * Pass reference to func, as well as args, when pushing frame. (GH-31100)Mark Shannon2022-02-031-4/+2
* | Post 3.11.0a5Pablo Galindo2022-02-031-1/+1
* | Python 3.11.0a5v3.11.0a5Pablo Galindo2022-02-031-2/+2
|/
* bpo-45459: Add Py_buffer to limited API (GH-29991)Christian Heimes2022-02-026-124/+146
* bpo-46072: Add some frame stats. (GH-31060)Mark Shannon2022-02-021-0/+2
* bpo-45953: Preserve backward compatibility on some PyThreadState field names....Eric Snow2022-02-011-2/+5
* bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon2022-02-011-0/+12
* bpo-46072: Add simple stats for Python calls. (GH-30989)Mark Shannon2022-01-281-0/+8
* bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon2022-01-283-38/+49
* bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)Victor Stinner2022-01-272-4/+4
* bpo-40170: Move _Py_GetAllocatedBlocks() to pycore_pymem.h (GH-30943)Victor Stinner2022-01-272-9/+8
* bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)Christian Heimes2022-01-271-1/+1
* bpo-46541: Generate the global objects initializer. (gh-30941)Eric Snow2022-01-271-0/+3
* bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)Kumar Aditya2022-01-272-0/+3
* bpo-40170: Remove _Py_GetAllocatedBlocks() function (GH-30940)Victor Stinner2022-01-272-8/+9
* bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)Victor Stinner2022-01-272-2/+7
* bpo-46528: Simplify the VM's stack manipulations (GH-30902)Brandt Bucher2022-01-261-61/+56