summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* bpo-45953: Statically initialize all the PyThreadState fields we can. (gh-30590)Eric Snow2022-01-142-11/+5
* bpo-46362: Ensure ntpath.abspath() uses the Windows API correctly (GH-30571)neonene2022-01-131-36/+1
* Statically initialize _PyRuntimeState fields. (gh-30588)Eric Snow2022-01-131-10/+0
* bpo-46370: Move the static initializer for _PyRuntime to its own header file....Eric Snow2022-01-132-0/+2
* bpo-46328: Add sys.exception() (GH-30514)Irit Katriel2022-01-132-2/+48
* bpo-46344: Fix trace bug in else of try and try-star blocks (GH-30544)Irit Katriel2022-01-131-2/+0
* bpo-46315: Add ifdef HAVE_ feature checks for WASI compatibility (GH-30507)Christian Heimes2022-01-131-1/+4
* bpo-45953: Statically allocate the main interpreter (and initial thread state...Eric Snow2022-01-122-17/+34
* bpo-46347: Yet another fix in the erorr path of PyEval_EvalCodeEx (#30554)Yury Selivanov2022-01-121-1/+0
* bpo-46347: Fix PyEval_EvalCodeEx to correctly cleanup in error paths (#30551)Yury Selivanov2022-01-111-13/+9
* bpo-46347: Fix memory leak in PyEval_EvalCodeEx. (#30546)Yury Selivanov2022-01-111-7/+0
* bpo-45953: Statically allocate and initialize global bytes objects. (gh-30096)Eric Snow2022-01-111-6/+0
* bpo-46331: Do not set line number of instruction storing doc-string. (GH-30518)Mark Shannon2022-01-111-0/+1
* bpo-46303: Move fileutils.h private functions to internal C API (GH-30484)Victor Stinner2022-01-111-0/+2
* bpo-46314: Remove extra RESUME when compiling a lamdba. (GH-30513)Mark Shannon2022-01-101-144/+142
* bpo-46217: Revert use of Windows constant that is newer than what we support ...Steve Dower2022-01-081-1/+1
* bpo-46289: Make conversion of FormattedValue not optional on ASDL (GH-30467)Batuhan Taskaya2022-01-071-8/+5
* bpo-46286: use the new POP_JUMP_IF_NOT_NONE opcode to simplify except* (GH-30...Irit Katriel2022-01-061-6/+2
* bpo-46208: Fix normalization of relative paths in _Py_normpath()/os.path.norm...neonene2022-01-061-9/+16
* bpo-45923: Handle call events in bytecode (GH-30364)Mark Shannon2022-01-063-72/+117
* bpo-46031: add POP_JUMP_IF_NOT_NONE and POP_JUMP_IF_NONE (GH-30019)penguin_wwy2022-01-063-6/+57
* bpo-45256: Don't track the exact depth of each `InterpreterFrame` (GH-30372)Brandt Bucher2022-01-051-8/+5
* bpo-46009: Remove GEN_START (GH-30367)Brandt Bucher2022-01-043-29/+8
* bpo-45609: More specialization stats for STORE_SUBSCR (GH-30193)Dennis Sweeney2022-01-041-3/+68
* bpo-46202: Remove opcode POP_EXCEPT_AND_RERAISE (GH-30302)Irit Katriel2022-01-043-46/+36
* 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