summaryrefslogtreecommitdiffstats
path: root/Python
Commit message (Expand)AuthorAgeFilesLines
* gh-113710: Add types to the interpreter DSL (#113711)Ken Jin2024-01-122-41/+26
* gh-107901: duplicate blocks with no lineno that have an eval break and multip...Irit Katriel2024-01-121-10/+22
* GH-113860: Get rid of `_PyUOpExecutorObject` (GH-113954)Brandt Bucher2024-01-126-29/+27
* gh-111968: Use per-thread freelists for tuple in free-threading (gh-113921)Donghee Na2024-01-114-3/+2
* gh-113845: Fix a compiler warning in Python/suggestions.c (GH-113949)Serhiy Storchaka2024-01-111-2/+0
* GH-113853: Guarantee forward progress in executors (GH-113854)Mark Shannon2024-01-113-73/+118
* gh-107901: jump leaving an exception handler doesn't need an eval break check...Irit Katriel2024-01-111-1/+1
* gh-89811: Check for valid tp_version_tag in specializer (GH-113558)Peter Lazorchak2024-01-111-1/+29
* gh-111968: Use per-thread freelists for float in free-threading (gh-113886)Donghee Na2024-01-104-3/+2
* GH-113860: All executors are now defined in terms of micro ops. Convert count...Mark Shannon2024-01-104-130/+111
* gh-111968: Introduce _PyFreeListState and _PyFreeListState_GET API (gh-113584)Donghee Na2024-01-095-17/+71
* Fix opcode name printing in debug mode (#113870)Guido van Rossum2024-01-091-3/+3
* gh-113842: Add missing error check for PyIter_Next() in Python/symtable.c (GH...Yan Yanchii2024-01-091-0/+6
* gh-110721: Remove unused code from suggestions.c after moving PyErr_Display t...Pablo Galindo Salgado2024-01-082-219/+1
* gh-73965: Move PYTHON_HISTORY into the correct usage section (#113798)Hugo van Kemenade2024-01-081-1/+1
* gh-73965: New environment variable PYTHON_HISTORY (#13208)Zackery Spytz2024-01-071-0/+1
* gh-107901: synthetic jumps which are not at end of loop no longer check the e...Irit Katriel2024-01-062-23/+36
* gh-113688: Split up gcmodule.c (gh-113715)Sam Gross2024-01-051-0/+1958
* gh-112532: Tag mimalloc heaps and pages (#113742)Sam Gross2024-01-051-2/+2
* GH-113486: Do not emit spurious PY_UNWIND events for optimized calls to class...Mark Shannon2024-01-053-5/+6
* gh-112532: Isolate abandoned segments by interpreter (#113717)Sam Gross2024-01-041-0/+5
* GH-113689: Fix broken handling of invalid executors (GH-113694)Brandt Bucher2024-01-042-2/+4
* gh-113603: Compiler no longer tries to maintain the no-empty-block invariant ...Irit Katriel2024-01-031-78/+38
* GH-113595: Don't enter invalid executor (GH-113596)Mark Shannon2024-01-032-19/+39
* GH-113657: Add back missing _SET_IP uops in tier two (GH-113662)Brandt Bucher2024-01-021-2/+3
* gh-73427: deprecate `_enablelegacywindowsfsencoding` (#107729)Inada Naoki2023-12-281-0/+7
* gh-112532: Use separate mimalloc heaps for GC objects (gh-113263)Sam Gross2023-12-262-0/+59
* gh-106905: Use separate structs to track recursion depth in each PyAST_mod2ob...Yilei Yang2023-12-251-312/+377
* GH-111485: Fix handling of FOR_ITER in Tier 2 (GH-113394)Mark Shannon2023-12-241-12/+5
* gh-113297: Fix segfault in compiler for with statement with 19 context manage...Irit Katriel2023-12-221-1/+2
* gh-113343: Fix error check on mmap(2) (#113342)Namhyung Kim2023-12-211-1/+1
* GH-111485: Delete the old generator code. (GH-113321)Mark Shannon2023-12-213-1019/+52
* gh-111375: Use `NULL` rather than `None` in the exception stack to indicate t...Carey Metcalfe2023-12-214-6/+6
* GH-111485: Generate `TARGET` table for computed goto dispatch. (GH-113319)Mark Shannon2023-12-201-1/+2
* GH-111485: Generate instruction and uop metadata (GH-113287)Mark Shannon2023-12-208-83/+93
* gh-113054: Compiler no longer replaces a redundant jump with no line number b...Irit Katriel2023-12-191-1/+16
* gh-112535: Implement fallback implementation of _Py_ThreadId() (gh-113185)Donghee Na2023-12-181-0/+14
* GH-111485: Break up instructions with unused cache entries into component mic...Mark Shannon2023-12-181-0/+71
* GH-111485: Test the new cases generator (GH-113252)Mark Shannon2023-12-182-28/+28
* gh-111964: Add _PyRWMutex a "readers-writer" lock (gh-112859)Sam Gross2023-12-161-0/+106
* GH-111485: Mark some instructions as `TIER_ONE_ONLY` (GH-113155)Brandt Bucher2023-12-153-139/+14
* GH-112354: Treat _EXIT_TRACE like an unconditional side exit (GH-113104)Mark Shannon2023-12-144-21/+4
* gh-112716: Fix SystemError when __builtins__ is not a dict (GH-112770)Serhiy Storchaka2023-12-141-2/+2
* Fix whitespace in generated codeMark Shannon2023-12-131-6/+6
* gh-76785: Avoid Pickled TracebackException for Propagated Subinterpreter Exce...Eric Snow2023-12-131-151/+88
* gh-112723: Call `PyThreadState_Clear()` from the correct interpreter (#112776)Sam Gross2023-12-133-53/+30
* gh-76785: Show the Traceback for Uncaught Subinterpreter Exceptions (gh-113034)Eric Snow2023-12-131-12/+206
* gh-112320: Implement on-trace confidence tracking for branches (#112321)Guido van Rossum2023-12-122-3/+18
* gh-113010: Don't decrement deferred in pystats (#113032)Michael Droettboom2023-12-121-4/+0
* GH-108866: Guarantee forward progress in executors. (GH-113006)Mark Shannon2023-12-123-18/+13