aboutsummaryrefslogtreecommitdiff
path: root/Include/internal
AgeCommit message (Expand)Author
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-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: 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-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-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-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-02bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel
2021-12-28bpo-46090: Allow PyThreadState.datastack_* members to be NULL (GH-30234)Brandt Bucher
2021-12-17bpo-46072: Add top level stats struct (GH-30169)Mark Shannon
2021-12-17bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel
2021-12-15bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon
2021-12-15bpo-46039: Split yield from in two (GH-30035)Mark Shannon
2021-12-14bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon
2021-12-14bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel
2021-12-13bpo-45953: Statically initialize the small ints. (gh-30092)Eric Snow
2021-12-11bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)Pablo Galindo Salgado
2021-12-09bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow
2021-12-07bpo-46008: Move Py*State init into distinct functions. (gh-29977)Eric Snow
2021-12-07bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)Eric Snow
2021-12-07bpo-46008: Stop calling _PyThreadState_Init() in new_threadstate(). (gh-29973)Eric Snow
2021-12-07bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)Eric Snow
2021-12-07bpo-46008: Return void from _PyEval_InitState(). (gh-29970)Eric Snow
2021-12-07bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon
2021-12-06bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon
2021-12-03bpo-45582 Fix prototype of _Py_Get_Getpath_CodeObject. (GH-29907)Benjamin Peterson
2021-12-03bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney
2021-12-03bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower