aboutsummaryrefslogtreecommitdiff
path: root/Include
AgeCommit message (Expand)Author
2022-02-01bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon
2022-01-28bpo-46072: Add simple stats for Python calls. (GH-30989)Mark Shannon
2022-01-28bpo-46329: Split calls into precall and call instructions. (GH-30855)Mark Shannon
2022-01-28bpo-40170: Remove PyHeapType_GET_MEMBERS() macro (GH-30942)Victor Stinner
2022-01-27bpo-40170: Move _Py_GetAllocatedBlocks() to pycore_pymem.h (GH-30943)Victor Stinner
2022-01-27bpo-46476: Simplify and fix _PyStaticCode_Dealloc (GH-30965)Christian Heimes
2022-01-27bpo-46541: Generate the global objects initializer. (gh-30941)Eric Snow
2022-01-27bpo-46476: Fix memory leak in code objects generated by deepfreeze (GH-30853)Kumar Aditya
2022-01-27bpo-40170: Remove _Py_GetAllocatedBlocks() function (GH-30940)Victor Stinner
2022-01-27bpo-40170: PyType_SUPPORTS_WEAKREFS() becomes a regular function (GH-30938)Victor Stinner
2022-01-26bpo-46528: Simplify the VM's stack manipulations (GH-30902)Brandt Bucher
2022-01-26bpo-35134: Add Include/cpython/descrobject.h (GH-30923)Victor Stinner
2022-01-24bpo-43683: Streamline YIELD_VALUE and SEND (GH-30723)Mark Shannon
2022-01-24bpo-46481: Implement vectorcall for weakref.ref.__call__ method. (GH-30820)Dong-hee Na
2022-01-23bpo-29882: Fix portability bug introduced in GH-30774 (#30794)Mark Dickinson
2022-01-23bpo-46417: Clear symtable identifiers at exit (GH-30809)Victor Stinner
2022-01-22bpo-46417: Clear Unicode static types at exit (GH-30806)Victor Stinner
2022-01-22bpo-46417: Factorize _PyExc_InitTypes() code (GH-30804)Victor Stinner
2022-01-22bpo-46417: Clear more static types (GH-30796)Victor Stinner
2022-01-22bpo-29882: _Py_popcount32() doesn't need 64x64 multiply (GH-30774)Victor Stinner
2022-01-21bpo-46417: Add _PyType_GetSubclasses() function (GH-30761)Victor Stinner
2022-01-21bpo-46417: Add _PyType_CAST() macro (GH-30760)Victor Stinner
2022-01-21bpo-46417: Py_Finalize() clears static types (GH-30743)Victor Stinner
2022-01-21bpo-46417: _curses uses PyStructSequence_NewType() (GH-30736)Victor Stinner
2022-01-21bpo-46417: Finalize structseq types at exit (GH-30645)Victor Stinner
2022-01-20bpo-46409: Make generators in bytecode (GH-30633)Mark Shannon
2022-01-14Merge remote-tracking branch 'upstream/main'Pablo Galindo
2022-01-14Post 3.11.0a4Pablo Galindo
2022-01-14bpo-45569: Change PYLONG_BITS_IN_DIGIT default to 30 (GH-30497)Mark Dickinson
2022-01-13bpo-45953: Statically initialize all the non-object PyInterpreterState fields...Eric Snow
2022-01-13bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)Eric Snow
2022-01-13bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene
2022-01-13Statically initialize _PyRuntimeState fields. (gh-30588)Eric Snow
2022-01-13bpo-46370: Move the static initializer for _PyRuntime to its own header file....Eric Snow
2022-01-13Python 3.11.0a4upstream-v3.11.0a4Pablo Galindo
2022-01-13bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes
2022-01-12bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow
2022-01-11bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)Eric Snow
2022-01-11bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner
2022-01-06bpo-45923: Handle call events in bytecode (GH-30364)Mark Shannon
2022-01-06bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy
2022-01-06bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085)" (G...Victor Stinner
2022-01-05bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)Brandt Bucher
2022-01-04bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher
2022-01-04bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel
2022-01-02bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel
2022-01-02bpo-46218: Change long_pow() to sliding window algorithm (GH-30319)Tim Peters
2021-12-28bpo-46090: Allow PyThreadState.datastack_* members to be NULL (GH-30234)Brandt Bucher
2021-12-22bpo-46140: take more Py_buffer arguments as const * (GH-30217)David Hewitt
2021-12-19Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208)Raymond Hettinger