summaryrefslogtreecommitdiffstats
path: root/Include/internal
Commit message (Expand)AuthorAgeFilesLines
* bpo-46370: Move the static initializer for _PyRuntime to its own header file....Eric Snow2022-01-134-583/+604
* bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes2022-01-131-1/+3
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-123-15/+67
* bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)Eric Snow2022-01-113-12/+280
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-112-0/+161
* bpo-46006: Revert "bpo-40521: Per-interpreter interned strings (GH-20085)" (G...Victor Stinner2022-01-061-11/+1
* bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)Brandt Bucher2022-01-051-2/+4
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-021-3/+3
* bpo-46090: Allow PyThreadState.datastack_* members to be NULL (GH-30234)Brandt Bucher2021-12-281-4/+7
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-171-8/+21
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-171-10/+2
* bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon2021-12-151-15/+2
* bpo-46039: Split yield from in two (GH-30035)Mark Shannon2021-12-151-0/+1
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-141-2/+2
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-143-3/+23
* bpo-45953: Statically initialize the small ints. (gh-30092)Eric Snow2021-12-144-45/+355
* bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)Pablo Galindo Salgado2021-12-111-2/+9
* bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow2021-12-0920-231/+483
* bpo-46008: Move Py*State init into distinct functions. (gh-29977)Eric Snow2021-12-082-2/+21
* bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)Eric Snow2021-12-081-5/+9
* bpo-46008: Stop calling _PyThreadState_Init() in new_threadstate(). (gh-29973)Eric Snow2021-12-081-0/+2
* bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)Eric Snow2021-12-071-11/+13
* bpo-46008: Return void from _PyEval_InitState(). (gh-29970)Eric Snow2021-12-071-1/+1
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-071-1/+22
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-062-2/+2
* bpo-45582 Fix prototype of _Py_Get_Getpath_CodeObject. (GH-29907)Benjamin Peterson2021-12-031-1/+1
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-031-0/+2
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-033-56/+11
* bpo-45753: Interpreter internal tweaks (GH-29575)Mark Shannon2021-12-012-11/+17
* bpo-45476: Disallow using asdl_seq_GET() as l-value (GH-29866)Victor Stinner2021-11-301-3/+3
* bpo-45476: Add _Py_RVALUE() macro (GH-29860)Victor Stinner2021-11-302-4/+4
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-293-19/+3
* bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...Irit Katriel2021-11-251-0/+2
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-233-15/+28
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-192-0/+3
* bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...Mark Shannon2021-11-181-1/+2
* bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)Dong-hee Na2021-11-181-0/+1
* bpo-45636: Simplify BINARY_OP (GH-29565)Brandt Bucher2021-11-161-0/+3
* bpo-45753: Make recursion checks more efficient. (GH-29524)Mark Shannon2021-11-161-4/+4
* bpo-45636: Merge all numeric operators (GH-29482)Brandt Bucher2021-11-111-2/+2
* bpo-45292: [PEP 654] Update traceback display code to work with exception gro...Irit Katriel2021-11-051-0/+11
* bpo-45691: Make array of small ints static to fix use-after-free error. (GH-2...Mark Shannon2021-11-033-29/+17
* bpo-45395: Make custom frozen modules additions instead of replacements. (gh-...Eric Snow2021-10-281-0/+3
* Store actual ints, not pointers to them in the interpreter state. (GH-29274)Mark Shannon2021-10-283-3/+3
* bpo-45256: Rationalize code around Python-to-Python calls a bit. (GH-29235)Mark Shannon2021-10-281-0/+15
* bpo-45506: Normalize _PyPathConfig.stdlib_dir when calculated. (#29040)Eric Snow2021-10-221-0/+3
* bpo-45292: [PEP 654] add the ExceptionGroup and BaseExceptionGroup classes (G...Irit Katriel2021-10-222-0/+3
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-0/+37
* bpo-45527: Don't count cache hits, just misses. (GH-29092)Mark Shannon2021-10-201-47/+0
* bpo-44525: Specialize simple Python calls. (GH-29033)Mark Shannon2021-10-201-0/+7