]> git.ipfire.org Git - thirdparty/Python/cpython.git/history - Python
GH-113655: Lower the C recursion limit on various platforms (GH-113944)
[thirdparty/Python/cpython.git] / Python /
2024-01-16  Mark ShannonGH-113655: Lower the C recursion limit on various platf...
2024-01-15  Donghee Nagh-111968: Use per-thread slice_cache in free-threading...
2024-01-15  Mark ShannonGH-112354: `_GUARD_IS_TRUE_POP` side-exits to target...
2024-01-12  Ken Jingh-113710: Add types to the interpreter DSL (#113711)
2024-01-12  Irit Katrielgh-107901: duplicate blocks with no lineno that have...
2024-01-12  Brandt BucherGH-113860: Get rid of `_PyUOpExecutorObject` (GH-113954)
2024-01-11  Donghee Nagh-111968: Use per-thread freelists for tuple in free...
2024-01-11  Serhiy Storchakagh-113845: Fix a compiler warning in Python/suggestions...
2024-01-11  Mark ShannonGH-113853: Guarantee forward progress in executors...
2024-01-11  Irit Katrielgh-107901: jump leaving an exception handler doesn...
2024-01-11  Peter Lazorchakgh-89811: Check for valid tp_version_tag in specializer...
2024-01-10  Donghee Nagh-111968: Use per-thread freelists for float in free...
2024-01-10  Mark ShannonGH-113860: All executors are now defined in terms of...
2024-01-09  Donghee Nagh-111968: Introduce _PyFreeListState and _PyFreeListSt...
2024-01-09  Guido van RossumFix opcode name printing in debug mode (#113870)
2024-01-09  Yan Yanchiigh-113842: Add missing error check for PyIter_Next...
2024-01-08  Pablo Galindo Salgadogh-110721: Remove unused code from suggestions.c after...
2024-01-08  Hugo van Kemenadegh-73965: Move PYTHON_HISTORY into the correct usage...
2024-01-07  Zackery Spytzgh-73965: New environment variable PYTHON_HISTORY ...
2024-01-06  Irit Katrielgh-107901: synthetic jumps which are not at end of...
2024-01-05  Sam Grossgh-113688: Split up gcmodule.c (gh-113715)
2024-01-05  Sam Grossgh-112532: Tag mimalloc heaps and pages (#113742)
2024-01-05  Mark ShannonGH-113486: Do not emit spurious PY_UNWIND events for...
2024-01-04  Sam Grossgh-112532: Isolate abandoned segments by interpreter...
2024-01-04  Brandt BucherGH-113689: Fix broken handling of invalid executors...
2024-01-03  Irit Katrielgh-113603: Compiler no longer tries to maintain the...
2024-01-03  Mark ShannonGH-113595: Don't enter invalid executor (GH-113596)
2024-01-02  Brandt BucherGH-113657: Add back missing _SET_IP uops in tier two...
2023-12-28  Inada Naokigh-73427: deprecate `_enablelegacywindowsfsencoding...
2023-12-26  Sam Grossgh-112532: Use separate mimalloc heaps for GC objects...
2023-12-25  Yilei Yanggh-106905: Use separate structs to track recursion...
2023-12-24  Mark ShannonGH-111485: Fix handling of FOR_ITER in Tier 2 (GH...
2023-12-22  Irit Katrielgh-113297: Fix segfault in compiler for with statement...
2023-12-21  Namhyung Kimgh-113343: Fix error check on mmap(2) (#113342)
2023-12-21  Mark ShannonGH-111485: Delete the old generator code. (GH-113321)
2023-12-21  Carey Metcalfegh-111375: Use `NULL` rather than `None` in the excepti...
2023-12-20  Mark ShannonGH-111485: Generate `TARGET` table for computed goto...
2023-12-20  Mark ShannonGH-111485: Generate instruction and uop metadata (GH...
2023-12-19  Irit Katrielgh-113054: Compiler no longer replaces a redundant...
2023-12-18  Donghee Nagh-112535: Implement fallback implementation of _Py_Thr...
2023-12-18  Mark ShannonGH-111485: Break up instructions with unused cache...
2023-12-18  Mark ShannonGH-111485: Test the new cases generator (GH-113252)
2023-12-16  Sam Grossgh-111964: Add _PyRWMutex a "readers-writer" lock ...
2023-12-15  Brandt BucherGH-111485: Mark some instructions as `TIER_ONE_ONLY...
2023-12-14  Mark ShannonGH-112354: Treat _EXIT_TRACE like an unconditional...
2023-12-14  Serhiy Storchakagh-112716: Fix SystemError when __builtins__ is not...
2023-12-13  Mark ShannonFix whitespace in generated code
2023-12-13  Eric Snowgh-76785: Avoid Pickled TracebackException for Propagat...
2023-12-13  Sam Grossgh-112723: Call `PyThreadState_Clear()` from the correc...
2023-12-13  Eric Snowgh-76785: Show the Traceback for Uncaught Subinterprete...
2023-12-12  Guido van Rossumgh-112320: Implement on-trace confidence tracking for...
2023-12-12  Michael Droettboomgh-113010: Don't decrement deferred in pystats (#113032)
2023-12-12  Mark ShannonGH-108866: Guarantee forward progress in executors...
2023-12-12  Eric Snowgh-76785: Fixes for test.support.interpreters (gh-112982)
2023-12-12  Mark ShannonGH-111485: Factor out tier 2 code generation from the...
2023-12-12  Sam Jamesgh-112970: Detect and use closefrom() when available...
2023-12-12  Guido van RossumA smattering of cleanups in uop debug output and lltrac...
2023-12-11  Yan Yanchiigh-112978: Remove redundant condition inside `take_gil...
2023-12-11  colorfulapplgh-90350: Optimize builtin functions min() and max...
2023-12-11  Pablo Galindo Salgadogh-112943: Correctly compute end offsets for multiline...
2023-12-07  Sam Grossgh-111924: Use PyMutex for Runtime-global Locks. (gh...
2023-12-07  Sam Grossgh-112538: Add internal-only _PyThreadStateImpl "wrappe...
2023-12-07  Sam Grossgh-111962: Make dtoa thread-safe in `--disable-gil...
2023-12-07  Mark ShannonGH-111485: Separate out parsing, analysis and code...
2023-12-07  Kushal Dasgh-74616: Raise ValueError in case of null character...
2023-12-07  Serhiy Storchakagh-112660: Do not clear arbitrary errors on import...
2023-12-06  Pablo Galindo Salgadogh-112730: Use color to highlight error locations ...
2023-12-06  Victor Stinnergh-111545: Add Py_HashPointer() function (#112096)
2023-12-06  Matt Prodanigh-112606: Use sem_clockwait with monotonic time when...
2023-12-04  Serhiy Storchakagh-65210: Add const qualifiers in PyArg_VaParseTupleAnd...
2023-12-04  Serhiy Storchakabpo-34392: Add sys. _is_interned() (GH-8755)
2023-12-03  Victor Stinnergh-106560: Fix redundant declarations in Python/frozen...
2023-12-01  Victor Stinnergh-112567: Add _PyTimeFraction C API (#112568)
2023-12-01  Victor Stinnergh-112567: Add _Py_GetTicksPerSecond() function (#112587)
2023-12-01  Pablo Galindo Salgadogh-112367: Only free perf trampoline arenas at shutdown...
2023-11-30  Irit Katrielgh-112519: Make it possible to specify instruction...
2023-11-30  Kirill Podoprigoragh-111972: Make Unicode name C APIcapsule initializatio...
2023-11-29  Guido van RossumRename ...Uop... to ...UOp... (uppercase O) for consist...
2023-11-27  apazgh-112217: Add check to call result for `do_raise(...
2023-11-27  Serhiy Storchakagh-111789: Use PyDict_GetItemRef() in Python/_warnings...
2023-11-27  Serhiy Storchakagh-111789: Use PyDict_GetItemRef() in Python/symtable...
2023-11-27  Serhiy Storchakagh-111789: Use PyDict_GetItemRef() in Python/codecs...
2023-11-27  Serhiy Storchakagh-111789: Use PyDict_GetItemRef() in Python/bltinmodul...
2023-11-27  Serhiy Storchakagh-112438: Fix support of format units with the "e...
2023-11-26  Irit Katrielgh-99606: Make code generated for an empty f-string...
2023-11-23  Eric Snowgh-76785: Return an "excinfo" Object From Interpreter...
2023-11-22  Thomas WoutersMerge branch 'main' of https://github.com/python/cpython
2023-11-22  Mark ShannonGH-111485: Sort cases in the case generator output...
2023-11-20  Michael Droettboomgh-111786: Use separate opcode vars for Tier 1 and...
2023-11-20  Guido van Rossumgh-112287: Speed up Tier 2 (uop) interpreter a little...
2023-11-20  Guido van Rossumgh-111848: Clean up RESERVE() macro (#112274)
2023-11-20  Guido van Rossumgh-106529: Make FOR_ITER a viable uop (#112134)
2023-11-20  Hugo van Kemenadegh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` ...
2023-11-18  Serhiy Storchakagh-112234: Remove the toplevel parameter in converttupl...
2023-11-18  Guido van Rossumgh-110319: Assert type_version != 0 before using it...
2023-11-17  Guido van RossumVarious small improvements to uop debug output (#112218)
2023-11-17  Guido van Rossumgh-106529: Cleanups split off gh-112134 (#112214)
2023-11-16  Sam Grossgh-111956: Add thread-safe one-time initialization...
2023-11-15  Mark ShannonGH-111848: Set the IP when de-optimizing (GH-112065)
2023-11-14  Mark ShannonGH-111848: Convert remaining jumps to deopts into tier...
next