summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* GH-111848: Convert remaining jumps to deopts into tier 2 code. (GH-112045)Mark Shannon2023-11-145-69/+92
* gh-111789: Simplify bytecodes.c by using PyDict_GetItemRef() (GH-111978)Serhiy Storchaka2023-11-143-140/+51
* gh-111262: Add PyDict_Pop() function (#112028)Victor Stinner2023-11-142-5/+3
* gh-111789: Simplify ceval.c by using PyDict_GetItemRef() (GH-111980)Serhiy Storchaka2023-11-141-18/+14
* gh-111789: Simplify import.c by using PyDict_GetItemRef() (GH-111979)Serhiy Storchaka2023-11-141-18/+17
* GH-111520: Add back the operand local (GH-111813)Brandt Bucher2023-11-142-27/+23
* gh-107149: make new opcode util functions private rather than public and unst...Irit Katriel2023-11-142-10/+11
* gh-111856: Fix os.fstat on windows with FAT32 and exFAT filesystem (GH-112038)AN Long2023-11-131-3/+8
* gh-106905: avoid incorrect SystemError about recursion depth mismatch (#106906)Markus Mohrhard2023-11-131-0/+14
* gh-111999: Add signatures and improve docstrings for builtins (GH-112000)Serhiy Storchaka2023-11-131-9/+13
* gh-111933: fix broken link to A.Neumaier article (gh-111937)Sergey B Kirpichev2023-11-121-1/+4
* Remove dead code left after gh-110721 (#111905)Serhiy Storchaka2023-11-101-37/+0
* gh-81925: Implement native thread ids for kFreeBSD (#111761)Samuel Thibault2023-11-091-0/+5
* gh-111786: Optimize for space for _PyEval_EvalFrameDefault on MSVC for PGO (#...Michael Droettboom2023-11-091-0/+10
* GH-111843: Tier 2 exponential backoff (GH-111850)Mark Shannon2023-11-093-14/+41
* GH-109369: Exit tier 2 if executor is invalid (GH-111657)Mark Shannon2023-11-096-5/+34
* gh-111569: Implement Python critical section API (gh-111571)Sam Gross2023-11-082-0/+110
* GH-111848: Tidy up tier 2 handling of FOR_ITER specialization by using DEOPT_...Mark Shannon2023-11-084-113/+33
* gh-111089: Revert PyUnicode_AsUTF8() changes (#111833)Victor Stinner2023-11-074-8/+27
* gh-111623: Add Support for Cross-interpreter tuples (gh-111628)Anthony Shaw2023-11-071-0/+98
* gh-106672: C API: Report indiscriminately ignored errors (GH-106674)Serhiy Storchaka2023-11-071-0/+3
* GH-111485: Allow arbitrary annotations on instructions and micro-ops. (GH-111...Mark Shannon2023-11-073-35/+18
* GH-111485: Make BEFORE_WITH a uop (GH-111812)Brandt Bucher2023-11-074-7/+55
* gh-76785: Move _Py_excinfo Functions Out of the Internal C-API (gh-111715)Eric Snow2023-11-062-175/+123
* GH-111772: Specialize slot loads and stores for `_Py_T_OBJECT` (GH-111773)Mark Shannon2023-11-061-3/+3
* GH-111646: Simplify optimizer, by compacting uops when making executor. (GH-1...Mark Shannon2023-11-062-117/+119
* GH-110829: Ensure Thread.join() joins the OS thread (#110848)Antoine Pitrou2023-11-043-22/+116
* gh-111684: Avoid a Compiler Warning (gh-111706)Eric Snow2023-11-031-0/+4
* gh-103615: Use local events for opcode tracing (GH-109472)Tian Gao2023-11-033-6/+65
* gh-111354: Simplify _PyGen_yf by moving some of its work to the compiler and ...Irit Katriel2023-11-034-7/+15
* gh-108082: Remove _PyErr_WriteUnraisableMsg() (GH-111643)Serhiy Storchaka2023-11-031-11/+0
* gh-111654: remove redundant decref in LOAD_FROM_DICT_OR_DEREF (#111655)AN Long2023-11-033-6/+3
* gh-76785: Minor Fixes in crossinterp.c (gh-111671)Eric Snow2023-11-031-126/+267
* gh-111663: Restore the Tier 2 uop count pystats (#111664)Michael Droettboom2023-11-021-0/+2
* gh-110892: Return NULL for `PyTrace_RETURN` events caused by an exception (GH...Tian Gao2023-11-021-11/+31
* gh-111354: simplify detection of RESUME after YIELD_VALUE at except-depth 1 ...Irit Katriel2023-11-026-15/+23
* gh-108082: Use PyErr_FormatUnraisable() (GH-111580)Serhiy Storchaka2023-11-026-39/+35
* Remove unnecessary includes (GH-111633)Serhiy Storchaka2023-11-022-2/+0
* GH-111435: Add Support for Sharing True and False Between Interpreters (gh-11...Anthony Shaw2023-11-021-0/+25
* gh-76785: Crossinterp utils additions (gh-111530)Eric Snow2023-11-014-76/+1117
* gh-111089: Use PyUnicode_AsUTF8() in getargs.c (#111620)Victor Stinner2023-11-011-6/+2
* High level docs for the VM state (#111621)Guido van Rossum2023-11-011-0/+90
* GH-111485: Silence warnings in Python/executor_cases.c.h (#111619)Guido van Rossum2023-11-013-0/+6
* gh-111374: Add a new PYTHON_FROZEN_MODULES env var, equivalent of `-X frozen_...Yilei Yang2023-11-011-1/+17
* gh-111520: Integrate the Tier 2 interpreter in the Tier 1 interpreter (#111428)Guido van Rossum2023-11-018-465/+462
* gh-111089: Use PyUnicode_AsUTF8() in Argument Clinic (#111585)Victor Stinner2023-11-013-21/+6
* GH-111537: Avoid using `this_instr` in asserts. (GH-111600)Mark Shannon2023-11-012-36/+24
* GH-111485: Use micro-ops to split specialization code from base action (GH-11...Mark Shannon2023-11-014-486/+587
* gh-108082: Add PyErr_FormatUnraisable() function (GH-111086)Serhiy Storchaka2023-10-311-8/+40
* gh-109181: Speed up Traceback object creation by lazily compute the line numb...Pablo Galindo Salgado2023-10-311-6/+29