summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* [3.14] gh-91048: Refactor and optimize remote debugging module (#134652) (#13...Pablo Galindo Salgado2025-05-251-0/+2
* [3.14] gh-133778: Fix setting `__annotations__` under PEP 563 (GH-133794) (#1...Miss Islington (bot)2025-05-251-9/+36
* [3.14] gh-133980: use atomic store in `PyObject_GenericSetDict` (GH-133988) (...Miss Islington (bot)2025-05-211-1/+7
* [3.14] gh-134119: Fix crash from calling next() on exhausted template iterato...Miss Islington (bot)2025-05-171-0/+3
* [3.14] gh-133970: Make PEP750 types generic (GH-133976) (#134029)Miss Islington (bot)2025-05-152-0/+4
* [3.14] gh-132641: fix race in `lru_cache` under free-threading (GH-133787) (#...Miss Islington (bot)2025-05-141-0/+5
* [3.14] gh-133968: Add fast path to PyUnicodeWriter_WriteStr() (GH-133969) (#1...Miss Islington (bot)2025-05-131-1/+6
* [3.14] gh-133767: Fix use-after-free in the unicode-escape decoder with an er...Miss Islington (bot)2025-05-132-36/+51
* gh-133703: dict: fix calculate_log2_keysize() (GH-133809)Miss Islington (bot)2025-05-111-5/+5
* [3.14] gh-132762: Fix underallocation bug in `dict.fromkeys()`(gh-133627) (gh...Miss Islington (bot)2025-05-081-3/+4
* [3.14] gh-133583: Add support for fixed size unsigned integers in argument pa...Miss Islington (bot)2025-05-081-0/+4
* [3.14] gh-132775: Unrevert "Add _PyCode_VerifyStateless()" (gh-133625)Eric Snow2025-05-082-17/+205
* Revert "gh-133395: add option for extension modules to specialize BINARY_OP/S...Irit Katriel2025-05-061-1/+0
* gh-132775: Revert "gh-132775: Add _PyCode_VerifyStateless() (gh-133221)" (#13...Petr Viktorin2025-05-062-209/+17
* gh-132775: Add _PyCode_VerifyStateless() (gh-133221)Eric Snow2025-05-052-17/+209
* GH-133261: Make sure trashcan pointers look mortal -- 32 bit (GH-133450)Mark Shannon2025-05-051-0/+9
* gh-132775: Unrevert "Add _PyCode_GetVarCounts()" (gh-133265)Eric Snow2025-05-051-3/+278
* gh-133140: Add `PyUnstable_Object_IsUniquelyReferenced` for free-threading (#...Peter Bierma2025-05-051-0/+8
* gh-133395: add option for extension modules to specialize BINARY_OP/SUBSCR, a...Irit Katriel2025-05-051-0/+1
* Revert "gh-124715: Fix method_dealloc(): use PyObject_GC_UnTrack() (#133199)"...Victor Stinner2025-05-051-1/+1
* GH-133261: Make sure that the GC doesn't untrack objects in trashcan (GH-133431)Mark Shannon2025-05-051-6/+32
* gh-132457: make staticmethod and classmethod generic (#132460)Ivan Kirpichnikov2025-05-041-2/+12
* gh-133304: workaround for RISC-V in PyFloat_Pack4/Unpack4() (#133328)Sergey B Kirpichev2025-05-031-0/+41
* gh-128972: Add `_Py_ALIGN_AS` and revert `PyASCIIObject` memory layout. (GH-1...Petr Viktorin2025-05-021-3/+3
* gh-133164: Add `PyUnstable_Object_IsUniqueReferencedTemporary` C API (gh-133170)Sam Gross2025-05-021-0/+24
* gh-130317: Fix test_pack_unpack_roundtrip() and add docs (#133204)Sergey B Kirpichev2025-05-011-6/+4
* gh-133166: Fix missing error emission of PyType_GetModuleByDef (GH-133240)neonene2025-05-011-7/+9
* gh-124715: Fix method_dealloc(): use PyObject_GC_UnTrack() (#133199)Victor Stinner2025-05-011-1/+1
* gh-100239: specialize BINARY_OP/SUBSCR for list-slice (#132626)Irit Katriel2025-05-011-5/+19
* Revert "gh-132775: Add _PyCode_GetVarCounts() (gh-133128)" (gh-133232)Eric Snow2025-05-011-235/+0
* dict: Remove redundant incref of immortal object Py_EMPTY_KEYS (GH-133200)Mae Hood2025-04-301-1/+2
* gh-132775: Add _PyCode_GetVarCounts() (gh-133128)Eric Snow2025-04-301-0/+235
* GH-124715: Move trashcan mechanism into `Py_Dealloc` (GH-132280)Mark Shannon2025-04-3011-70/+28
* gh-132661: Implement PEP 750 (#132662)Lysandros Nikolaou2025-04-305-4/+817
* gh-116436: Improve error message when TypeError occurs during dict update (#1...Shantanu2025-04-301-4/+5
* GH-132508: Use tagged integers on the evaluation stack for the last instructi...Mark Shannon2025-04-291-2/+3
* gh-130317: Fix strict aliasing in PyFloat_Pack8() (#133150)Victor Stinner2025-04-291-7/+7
* Revert gh-127266: avoid data races when updating type slots (gh-131174) (gh-1...Neil Schemenauer2025-04-291-198/+93
* gh-132775: Add _PyCode_ReturnsOnlyNone() (gh-132981)Eric Snow2025-04-291-0/+43
* gh-132070: Use _PyObject_IsUniquelyReferenced in unicodeobject (gh-133039)Donghee Na2025-04-291-18/+25
* gh-127266: avoid data races when updating type slots (gh-131174)Neil Schemenauer2025-04-281-93/+198
* gh-132942: Fix races in type lookup cache (gh-133032)Neil Schemenauer2025-04-281-3/+11
* gh-132775: Add _PyModule_GetFilenameObject() and _PyModule_GetFilenameUTF8() ...Eric Snow2025-04-281-9/+59
* gh-133073: avoid `NULL + 0` arithmetic in `list_extend_*` functions (#133074)Bénédikt Tran2025-04-281-6/+22
* gh-130317: Fix PyFloat_Pack/Unpack[24] for NaN's with payload (#130452)Sergey B Kirpichev2025-04-281-7/+42
* gh-130907: Treat all module-level annotations as conditional (#131550)Jelle Zijlstra2025-04-281-1/+21
* gh-132987: Support __index__() for unsigned integers in Argument Clinic (GH-1...Serhiy Storchaka2025-04-281-94/+25
* gh-132776: Revert Moving memoryview XIData Code to memoryobject.c (gh-132960)Eric Snow2025-04-251-273/+0
* gh-132798: Schedule removal of `PyUnicode_AsDecoded/Encoded` functions for 3....Stan Ulbrych2025-04-251-4/+8
* gh-132776: Cleanup for XIBufferViewType (gh-132821)Eric Snow2025-04-251-0/+273