]> git.ipfire.org Git - thirdparty/Python/cpython.git/history - Objects
GH-113655: Lower the C recursion limit on various platforms (GH-113944)
[thirdparty/Python/cpython.git] / Objects /
2024-01-16  Donghee Nagh-112087: Update list impl to be thread-safe with...
2024-01-15  Donghee Nagh-111968: Use per-thread slice_cache in free-threading...
2024-01-15  Sam Grossgh-112532: Fix memory block count for free-threaded...
2024-01-15  Sergey B Kirpichevgh-109598: make PyComplex_RealAsDouble/ImagAsDouble...
2024-01-12  Donghee Nagh-111968: Explicit handling for finalized freelist...
2024-01-11  Donghee Nagh-111968: Use per-thread freelists for tuple in free...
2024-01-11  Nikita Sobolevgh-112640: Add `kwdefaults` parameter to `types.Functio...
2024-01-10  Donghee Nagh-111968: Unify naming scheme for freelist (gh-113919)
2024-01-10  Sam Grossgh-113753: Clear finalized bit when putting PyAsyncGenA...
2024-01-10  Donghee Nagh-111968: Use per-thread freelists for float in free...
2024-01-09  Donghee Nagh-111968: Introduce _PyFreeListState and _PyFreeListSt...
2024-01-09  Donghee Nagh-112087: Update list.{pop,clear,reverse,remove} to...
2024-01-08  Jakub Kulíkgh-112808: Fix mimalloc build on Solaris (#112809)
2024-01-08  Jakub Kulíkgh-112806: Remove unused function warnings during mimal...
2024-01-06  Sam Grossgh-113750: Fix object resurrection in free-threaded...
2024-01-05  Sam Grossgh-112532: Tag mimalloc heaps and pages (#113742)
2024-01-04  Sam Grossgh-112532: Isolate abandoned segments by interpreter...
2024-01-03  Alex WaygoodDocument the `co_lines` method on code objects (#113682)
2024-01-02  Christopher Chavezgh-111178: Avoid calling functions from incompatible...
2024-01-02  Christopher Chavezgh-111178: Avoid calling functions from incompatible...
2024-01-02  Christopher Chavezgh-111178: Avoid calling functions from incompatible...
2023-12-26  Sam Grossgh-112532: Use separate mimalloc heaps for GC objects...
2023-12-26  Donghee Nagh-111971: Make _PyUnicode_FromId thread-safe in -...
2023-12-22  Yan Yanchiigh-113212: Improve error message & document zero-arg...
2023-12-22  Sam Grossgh-112027: Don't print mimalloc warning after mmap...
2023-12-21  Raymond Hettingergh-113157 gh-89519: Fix method descriptors (gh-113233)
2023-12-21  Shantanugh-95754: Better AttributeError on partially initialise...
2023-12-21  Erlend E. Aaslandgh-110383: Improve accuracy of str.split() and str...
2023-12-21  Carey Metcalfegh-111375: Use `NULL` rather than `None` in the excepti...
2023-12-20  Christopher Chavezgh-111178: Make slot functions in typeobject.c have...
2023-12-12  Sam Grossgh-112532: Require mimalloc in `--disable-gil` builds...
2023-12-11  Christopher Chavezgh-111178: Avoid calling functions from incompatible...
2023-12-07  Sam Grossgh-111924: Use PyMutex for Runtime-global Locks. (gh...
2023-12-07  andrewluotechnologiesgh-112125: Fix None.__ne__(None) returning NotImplement...
2023-12-07  Serhiy Storchakagh-112660: Do not clear arbitrary errors on import...
2023-12-05  Sergey B KirpichevMinor refactoring of Object/abstract.c (UNARY_FUNC...
2023-12-04  chilaxangh-112625: Protect bytearray from being freed by misbeh...
2023-12-01  Irit Katrielgh-111058: Change coro.cr_frame/gen.gi_frame to be...
2023-11-30  Kirill Podoprigoragh-111972: Make Unicode name C APIcapsule initializatio...
2023-11-22  Eric Snowgh-76785: Add _PyType_GetModuleName() to the Internal...
2023-11-20  Hugo van Kemenadegh-111863: Rename `Py_NOGIL` to `Py_GIL_DISABLED` ...
2023-11-19  Nikita Sobolevgh-112266: Remove `(if defined)` part from `__dict__...
2023-11-15  Victor Stinnergh-112026: Restore removed _PyDict_GetItemStringWithErr...
2023-11-15  Miro Hrončokgh-96954: Fix `make regen-unicodedata` in out-of-tree...
2023-11-15  Victor Stinnergh-112026: Restore removed private C API (#112115)
2023-11-14  Furkan Ondergh-111906: Fix warnings during mimalloc build on FreeBS...
2023-11-14  Victor Stinnergh-111262: Add PyDict_Pop() function (#112028)
2023-11-14  Serhiy Storchakagh-111789: Use PyDict_GetItemRef() in Objects/ (GH...
2023-11-13  Victor Stinnergh-111138: Add PyList_Extend() and PyList_Clear() funct...
2023-11-13  Serhiy Storchakagh-111999: Add signatures and improve docstrings for...
2023-11-10  Sam Grossgh-110481: fix 'unused function' warning for `is_shared...
2023-11-10  Serhiy StorchakaAdd private _PyUnicode_AsUTF8NoNUL() function (GH-111957)
2023-11-09  Pavel OvchinnikovImprove error message for "float modulo by zero" (...
2023-11-09  Irit Katrielgh-111354: remove comparisons with enum values, variabl...
2023-11-08  Sam Grossgh-111569: Implement Python critical section API (gh...
2023-11-08  Jelle Zijlstragh-110543: Fix CodeType.replace in presence of comprehe...
2023-11-07  Victor Stinnergh-111089: Revert PyUnicode_AsUTF8() changes (#111833)
2023-11-07  Irit Katrielgh-81137: deprecate assignment of code object to a...
2023-11-07  Serhiy Storchakagh-106672: C API: Report indiscriminately ignored error...
2023-11-07  Irit Katrielgh-79932: raise exception if frame.clear() is called...
2023-11-06  Irit Katrielsimplify code to pop exception in frame_setlineno ...
2023-11-04  Nikita Sobolevgh-111666: Speed up `BaseExceptionGroup.{derive,split...
2023-11-03  Victor Stinnergh-111506: Implement Py_SET_REFCNT() as opaque function...
2023-11-03  Tian Gaogh-103615: Use local events for opcode tracing (GH...
2023-11-03  scodergh-106168: Revert the "size before item" setting (...
2023-11-03  Irit Katrielgh-111354: Simplify _PyGen_yf by moving some of its...
2023-11-02  Mark ShannonGH-109369 Add vectorcall to `PyLong_Type` (GH-111642)
2023-11-02  Irit Katrielgh-111354: simplify detection of RESUME after YIELD_VAL...
2023-11-02  Serhiy Storchakagh-108082: Use PyErr_FormatUnraisable() (GH-111580)
2023-11-02  Ayappan Perumalgh-111544: Fix mimalloc build on AIX (#111593)
2023-11-01  Victor Stinnergh-111089: Use PyUnicode_AsUTF8() in Argument Clinic...
2023-10-31  Dino Viehlandgh-90815: Exclude mimalloc .c files from Windows build...
2023-10-30  Eric Snowgh-76785: Move the Cross-Interpreter Code to Its Own...
2023-10-30  Victor Stinnergh-90815: Fix mimalloc build on WASI (#111524)
2023-10-30  Victor Stinnergh-90815: Fix _PyMem_MimallocEnabled() compiler warning...
2023-10-30  Sam Grossgh-110481: Implement biased reference counting (gh...
2023-10-30  Dino Viehlandgh-90815: Add mimalloc memory allocator (#109914)
2023-10-29  Savannah OstrowskiGH-111339: Fix initialization and finalization of stati...
2023-10-27  Raymond Hettingergh-89519: Remove classmethod descriptor chaining, depre...
2023-10-26  Irit Katrielgh-111354: define names for RESUME oparg values (#111365)
2023-10-26  Irit Katrielgh-109094: replace frame->prev_instr by frame->instr_pt...
2023-10-25  Irit Katrielgh-100762: Fix optimization in gen_close (#111069)
2023-10-24  Savannah OstrowskiGH-94438: Restore ability to jump over None tests ...
2023-10-23  Radislav Chugunovgh-109894: Fix initialization of static `MemoryError...
2023-10-23  Furkan Ondergh-67565: Remove redundant C-contiguity checks (GH...
2023-10-20  Victor Stinnergh-111089: PyUnicode_AsUTF8AndSize() sets size on error...
2023-10-20  Victor Stinnergh-111089: PyUnicode_AsUTF8() now raises on embedded...
2023-10-17  Victor Stinnergh-110964: Remove private _PyArg functions (#110966)
2023-10-16  Nikita Sobolevgh-110864: TypeVar constructor: Partially revert gh...
2023-10-16  Nikita Sobolevgh-110907: AC: Disallow using `*` with vararg (#110908)
2023-10-13  Nikita Sobolevgh-110525: Delete `test_c_api` method from `set` object...
2023-10-12  Jelle Zijlstragh-110782: Fix crash when TypeVar is constructed with...
2023-10-11  Serhiy Storchakagh-110289: C API: Add PyUnicode_EqualToUTF8() and PyUni...
2023-10-10  Brandt BucherGH-104584: Fix refleak when tracing through calls ...
2023-10-09  Eric Snowgh-76785: Add SendChannel.send_buffer() (#110246)
2023-10-04  Xuehai Pangh-110222: Add support of PyStructSequence in copy...
2023-10-04  Xuehai Pangh-110235: Raise TypeError for duplicate/unknown fields...
2023-10-02  Victor Stinnergh-107073: Make PyObject_VisitManagedDict() public...
2023-09-30  Victor Stinnergh-110014: Include explicitly <unistd.h> header (#110155)
2023-09-29  Victor Stinnergh-110079: Remove extern "C" { ...} in C code (#110080)
next