aboutsummaryrefslogtreecommitdiff
path: root/Python
AgeCommit message (Expand)Author
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-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-45609: More specialization stats for STORE_SUBSCR (GH-30193)Dennis Sweeney
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-02Update copyright year to 2022. (GH-30335)Benjamin Peterson
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-16bpo-45635: Do not suppress errors in functions called from _PyErr_Display (GH...Irit Katriel
2021-12-16Better randomization of stats filenames. (GH-30145)Mark Shannon
2021-12-16bpo-45829: Check `__getitem__`'s version for overflow before specializing (GH...Brandt Bucher
2021-12-15bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon
2021-12-15bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...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-14bpo-45919: Remove out of date comment (GH-30090)Dong-hee Na
2021-12-13bpo-45953: Statically initialize the small ints. (gh-30092)Eric Snow
2021-12-13bpo-45919: Use WinAPI GetFileType() in is_valid_fd() (GH-30082)Dong-hee Na
2021-12-12bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya
2021-12-11bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)Pablo Galindo Salgado
2021-12-11bpo-37971: fix the position of decorator application (GH-30027)Carl Friedrich Bolz-Tereick
2021-12-10bpo-45635: refactor print_exception_recursive into smaller functions to stand...Irit Katriel
2021-12-10bpo-45654: No need to freeze types (GH-30028)Christian Heimes
2021-12-10bpo-45582: Fix test_embed failure during a PGO build on Windows (GH-30014)neonene
2021-12-09bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta
2021-12-09bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow
2021-12-09bpo-45654: Freeze the runpy module and stuff it imports (GH-29903)Kumar Aditya
2021-12-09bpo-45635: continue refactor of print_exception() to standardize error handli...Irit Katriel
2021-12-09bpo-45510: Check both types when specializing subtraction (GH-29995)Brandt Bucher
2021-12-08bpo-45711: Remove unnecessary normalization of exc_info (GH-29922)Irit Katriel
2021-12-08bpo-45635: refactor print_exception() into smaller functions (GH-29981)Irit Katriel
2021-12-08bpo-46009: Do not exhaust generator when send() method raises (GH-29986)Mark Shannon
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: Use PyMem_RawCalloc() to allocate PyThreadState. (GH-29972)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-07Fix leak when an exception is raised during generator creation. (GH-29960)Mark Shannon
2021-12-07bpo-45635: standardize error handling in traceback.c (GH-29905)Irit Katriel
2021-12-07bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon
2021-12-07Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner
2021-12-06bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon
2021-12-05Delete orphaned comment (#29917)Guido van Rossum
2021-12-03bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel
2021-12-03bpo-45950: Introduce Bootstrap Python again (#29859)Christian Heimes