summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* gh-117482: Fix Builtin Types Slot Wrappers (gh-121602)Eric Snow2024-07-111-10/+30
* gh-117657: Fix TSan race in _PyDict_CheckConsistency (#121551)Sam Gross2024-07-101-9/+15
* gh-120198: Stop the world when setting __class__ on free-threaded build (GH-1...Ken Jin2024-07-102-49/+62
* gh-121460: Skip freeing unallocated arenas (gh-121491)Stefano Rivera2024-07-101-0/+8
* GH-121439: Allow PyTupleObjects with an ob_size of 20 in the free_list to be ...satori19952024-07-101-1/+1
* gh-117657: Fix TSAN races in setobject.c (#121511)Sam Gross2024-07-091-8/+10
* gh-121368: Fix seq lock memory ordering in _PyType_Lookup (#121388)Sam Gross2024-07-081-1/+1
* gh-121288: Make error message for index() methods consistent (GH-121395)Serhiy Storchaka2024-07-052-2/+2
* updated tp_flags initialization to use inplace or (#120625)byundojin2024-07-031-1/+1
* gh-117139: Add _PyTuple_FromStackRefSteal and use it (#121244)Sam Gross2024-07-021-0/+21
* gh-121165: protect macro expansion of `ADJUST_INDICES` with do-while(0) (#121...Bénédikt Tran2024-07-022-26/+36
* gh-117657: Fix data races reported by TSAN in some set methods (#120914)AN Long2024-07-013-114/+64
* gh-119372: Recover inf's and zeros in _Py_c_quot (GH-119457)Sergey B Kirpichev2024-06-291-2/+23
* gh-121115: Skip __index__ in PyLong_AsNativeBytes by default (GH-121118)Steve Dower2024-06-281-1/+5
* gh-120686: remove unused internal c api functions (#120687)Irit Katriel2024-06-272-30/+0
* gh-121040: Use __attribute__((fallthrough)) (#121044)Victor Stinner2024-06-273-8/+8
* gh-117139: Convert the evaluation stack to stack refs (#118450)Ken Jin2024-06-263-32/+33
* gh-120593: Fix const qualifier in _PyLong_CompactValue() (#121053)Victor Stinner2024-06-261-2/+2
* gh-119786: move frames documentation to InternalDocs and add details (#121009)Irit Katriel2024-06-261-157/+0
* gh-120858: PyDict_Next should not lock the dict (#120859)Sam Gross2024-06-241-7/+1
* gh-120860: Fix a few bugs in `type_setattro` error paths. (#120861)Sam Gross2024-06-241-37/+41
* Fix typos in comments (#120821)Xie Yanbo2024-06-248-10/+10
* gh-120834: fix over-allocation in PyGenObject, PyCoroObject, PyAsyncGenObject...Irit Katriel2024-06-241-3/+3
* Fixes loop variables to be the same types as their limit (GH-120958)Steve Dower2024-06-243-6/+5
* gh-119182: Add PyUnicodeWriter_WriteUCS4() function (#120849)Victor Stinner2024-06-241-5/+48
* gh-70278: Fix PyUnicode_FromFormat() with precision for %s and %V (GH-120365)Serhiy Storchaka2024-06-241-2/+11
* gh-119521: Rename IncompleteInputError to _IncompleteInputError and remove fr...Pablo Galindo Salgado2024-06-241-8/+12
* gh-120834: fix type of *_iframe field in _PyGenObject_HEAD declaration (#120835)Irit Katriel2024-06-242-21/+17
* gh-119182: Add checks to PyUnicodeWriter APIs (#120870)Victor Stinner2024-06-221-0/+13
* gh-119182: Use PyUnicodeWriter_WriteWideChar() (#120851)Victor Stinner2024-06-221-6/+8
* gh-119344: Make critical section API public (#119353)Sam Gross2024-06-213-45/+34
* gh-119182: Add PyUnicodeWriter_DecodeUTF8Stateful() (#120639)Victor Stinner2024-06-211-65/+136
* gh-113993: Allow interned strings to be mortal, and fix related issues (GH-12...Petr Viktorin2024-06-215-127/+454
* gh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (#120442)Nikita Sobolev2024-06-211-12/+33
* gh-119182: Optimize PyUnicode_FromFormat() (#120796)Victor Stinner2024-06-201-26/+26
* gh-119182: Use public PyUnicodeWriter API in union_repr() (#120797)Victor Stinner2024-06-201-24/+30
* gh-119182: Use public PyUnicodeWriter API in ga_repr() (#120799)Victor Stinner2024-06-201-33/+35
* gh-117511: Make PyMutex public in the non-limited API (#117731)Sam Gross2024-06-201-1/+1
* gh-119786: move locations doc to InternalDocs (#120445)Irit Katriel2024-06-191-69/+0
* GH-120097: Make FrameLocalsProxy a mapping (#120101)Mark Shannon2024-06-191-1/+1
* GH-119462: Enforce invariants of type versioning (GH-120731)Mark Shannon2024-06-191-92/+56
* gh-120600: Make Py_TYPE() opaque in limited C API 3.14 (#120601)Victor Stinner2024-06-181-0/+8
* gh-118789: Add `PyUnstable_Object_ClearWeakRefsNoCallbacks` (#118807)Sam Gross2024-06-182-3/+11
* GH-120507: Lower the `BEFORE_WITH` and `BEFORE_ASYNC_WITH` instructions. (#12...Mark Shannon2024-06-181-0/+28
* gh-120524: Avoid a Race On _PyRuntime.types.managed_static.types[i].interp_co...Eric Snow2024-06-171-2/+4
* gh-119182: Add PyUnicodeWriter C API (#119184)Victor Stinner2024-06-171-16/+165
* gh-114091: Reword error message for unawaitable types (#114090)Steele Farnsworth2024-06-171-1/+1
* gh-120196: Reuse find_max_char() for bytes objects (#120497)Ruben Vorderman2024-06-172-55/+25
* gh-83754: Use the Py_TYPE() macro (#120599)Victor Stinner2024-06-171-1/+1
* gh-117657: Make PyType_HasFeature (exported version) atomic (#120484)Ken Jin2024-06-151-1/+1