summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-46219, 46221: simplify except* implementation following exc_info changes....Irit Katriel2022-01-022-141/+17
* Update copyright year to 2022. (GH-30335)Benjamin Peterson2022-01-021-1/+1
* bpo-46090: Allow PyThreadState.datastack_* members to be NULL (GH-30234)Brandt Bucher2021-12-281-21/+17
* bpo-46072: Add top level stats struct (GH-30169)Mark Shannon2021-12-172-70/+59
* bpo-45711: Remove type and traceback from exc_info (GH-30122)Irit Katriel2021-12-174-269/+119
* bpo-45635: Do not suppress errors in functions called from _PyErr_Display (GH...Irit Katriel2021-12-161-113/+157
* Better randomization of stats filenames. (GH-30145)Mark Shannon2021-12-161-2/+14
* bpo-45829: Check `__getitem__`'s version for overflow before specializing (GH...Brandt Bucher2021-12-161-1/+1
* bpo-46072: Add --with-pystats configure option to simplify gathering of VM st...Mark Shannon2021-12-152-27/+24
* bpo-44525: Specialize for calls to type and other builtin classes with 1 argu...Mark Shannon2021-12-153-16/+74
* bpo-46039: Split yield from in two (GH-30035)Mark Shannon2021-12-153-30/+54
* bpo-44525: Split calls into PRECALL and CALL (GH-30011)Mark Shannon2021-12-144-120/+280
* bpo-45292: [PEP-654] add except* (GH-29581)Irit Katriel2021-12-147-12/+954
* bpo-45919: Remove out of date comment (GH-30090)Dong-hee Na2021-12-141-2/+4
* bpo-45953: Statically initialize the small ints. (gh-30092)Eric Snow2021-12-141-2/+0
* bpo-45919: Use WinAPI GetFileType() in is_valid_fd() (GH-30082)Dong-hee Na2021-12-131-12/+10
* bpo-45855: Replaced deprecated `PyImport_ImportModuleNoBlock` with PyImport_I...Kumar Aditya2021-12-122-2/+2
* bpo-46042: Improve SyntaxError locations in the symbol table (GH-30059)Pablo Galindo Salgado2021-12-111-60/+83
* bpo-37971: fix the position of decorator application (GH-30027)Carl Friedrich Bolz-Tereick2021-12-101-8/+25
* bpo-45635: refactor print_exception_recursive into smaller functions to stand...Irit Katriel2021-12-101-149/+187
* bpo-45654: No need to freeze types (GH-30028)Christian Heimes2021-12-101-3/+0
* bpo-45582: Fix test_embed failure during a PGO build on Windows (GH-30014)neonene2021-12-101-0/+2
* bpo-43931: Export Python version as API data (GH-25577)Gabriele N. Tornetta2021-12-101-0/+3
* bpo-46008: Make runtime-global object/type lifecycle functions and state cons...Eric Snow2021-12-094-51/+100
* bpo-45654: Freeze the runpy module and stuff it imports (GH-29903)Kumar Aditya2021-12-091-0/+14
* bpo-45635: continue refactor of print_exception() to standardize error handli...Irit Katriel2021-12-091-78/+105
* bpo-45510: Check both types when specializing subtraction (GH-29995)Brandt Bucher2021-12-091-0/+4
* bpo-45711: Remove unnecessary normalization of exc_info (GH-29922)Irit Katriel2021-12-081-20/+0
* bpo-45635: refactor print_exception() into smaller functions (GH-29981)Irit Katriel2021-12-081-87/+139
* bpo-46009: Do not exhaust generator when send() method raises (GH-29986)Mark Shannon2021-12-081-18/+2
* bpo-46008: Move Py*State init into distinct functions. (gh-29977)Eric Snow2021-12-081-101/+272
* bpo-46008: Add _PyInterpreterState_Main(). (gh-29978)Eric Snow2021-12-082-2/+2
* bpo-46008: Stop calling _PyThreadState_Init() in new_threadstate(). (gh-29973)Eric Snow2021-12-081-7/+13
* bpo-46008: Use PyMem_RawCalloc() to allocate PyThreadState. (GH-29972)Eric Snow2021-12-071-38/+2
* bpo-46008: Move thread-related interpreter state into a sub-struct. (gh-29971)Eric Snow2021-12-076-25/+25
* bpo-46008: Return void from _PyEval_InitState(). (gh-29970)Eric Snow2021-12-072-9/+6
* Fix leak when an exception is raised during generator creation. (GH-29960)Mark Shannon2021-12-071-20/+7
* bpo-45635: standardize error handling in traceback.c (GH-29905)Irit Katriel2021-12-071-66/+104
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-073-79/+46
* Revert "bpo-28533: Remove asyncore, asynchat, smtpd modules (GH-29521)" (GH-2...Victor Stinner2021-12-071-0/+3
* bpo-45963: Make space for the InterpreterFrame of a generator in that generat...Mark Shannon2021-12-062-42/+17
* Delete orphaned comment (#29917)Guido van Rossum2021-12-051-5/+0
* bpo-45607: Make it possible to enrich exception displays via setting their __...Irit Katriel2021-12-031-0/+35
* bpo-45950: Introduce Bootstrap Python again (#29859)Christian Heimes2021-12-031-45/+0
* bpo-45885: Specialize COMPARE_OP (GH-29734)Dennis Sweeney2021-12-033-23/+224
* bpo-45582: Port getpath[p].c to Python (GH-29041)Steve Dower2021-12-035-803/+354
* bpo-40280: Optimize ints and and startup on wasm (GH-29887)Christian Heimes2021-12-021-1/+5
* bpo-45954: Rename PyConfig.no_debug_ranges to code_debug_ranges (GH-29886)Victor Stinner2021-12-021-5/+6
* bpo-45753: Interpreter internal tweaks (GH-29575)Mark Shannon2021-12-011-139/+194
* bpo-45711: Change exc_info related APIs to derive type and traceback from the...Irit Katriel2021-11-302-32/+51