summaryrefslogtreecommitdiffstats
path: root/Include
Commit message (Expand)AuthorAgeFilesLines
* bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy2022-01-061-5/+7
* 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-46009: Remove GEN_START (GH-30367)Brandt Bucher2022-01-041-4/+3
* bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel2022-01-041-37/+36
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-021-3/+3
* bpo-46218: Change long_pow() to sliding window algorithm (GH-30319)Tim Peters2022-01-021-6/+0
* bpo-46090: Allow PyThreadState.datastack_* members to be NULL (GH-30234)Brandt Bucher2021-12-281-4/+7
* bpo-46140: take more Py_buffer arguments as const * (GH-30217)David Hewitt2021-12-222-4/+4
* Revert "bpo-46131: add fastpath for PyFloat_Check() (GH-30200)" (GH-30208)Raymond Hettinger2021-12-192-3/+0
* bpo-46131: add fastpath for PyFloat_Check() (#30200)Matti Picus2021-12-192-0/+3
* 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-172-11/+3
* bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon2021-12-151-15/+2
* bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...Mark Shannon2021-12-151-24/+26
* bpo-46039: Split yield from in two (GH-30035)Mark Shannon2021-12-152-12/+13
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-142-35/+37
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-144-5/+27
* 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-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-101-0/+4
* bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow2021-12-0920-231/+483
* bpo-46007: Exclude PyUnicode_CHECK_INTERNED() from limited C API (GH-29987)Victor Stinner2021-12-092-4/+4
* Post 3.11.0a3Pablo Galindo2021-12-081-1/+1
* Python 3.11.0a3v3.11.0a3Pablo Galindo2021-12-081-2/+2
* bpo-46008: Move Py*State init into distinct functions. (gh-29977)Eric Snow2021-12-083-2/+27
* 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-074-5/+28
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-063-17/+10
* bpo-45582 Fix prototype of _Py_Get_Getpath_CodeObject. (GH-29907)Benjamin Peterson2021-12-031-1/+1
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-1/+1
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-033-37/+46
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-035-62/+14
* bpo-40280: Optimize ints and and startup on wasm (GH-29887)Christian Heimes2021-12-021-4/+8
* bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner2021-12-021-1/+1
* 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-306-7/+11
* bpo-45786: Allocate space for frame in frame object. (GH-29729)Mark Shannon2021-11-294-21/+7
* bpo-45711: use exc_value instead of exc_type to determine if exc_info is vali...Irit Katriel2021-11-251-0/+2
* bpo-45893: Add missing extern C to initconfig.h (GH-29761)Christian Heimes2021-11-241-0/+6
* bpo-39026: Fix Python.h when building with Xcode (GH-29488)Victor Stinner2021-11-232-3/+1
* bpo-44525: Copy free variables in bytecode to allow calls to inner functions ...Mark Shannon2021-11-235-18/+29
* bpo-45848: Allow the parser to get error lines from encoded files (GH-29646)Pablo Galindo Salgado2021-11-201-0/+5
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-193-29/+35
* bpo-45829: Specialize BINARY_SUBSCR for __getitem__ implemented in Python. (G...Mark Shannon2021-11-182-33/+35
* bpo-45510: Specialize BINARY_SUBTRACT (GH-29523)Dong-hee Na2021-11-182-33/+36