summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-111178: Fix function signatures for test_os (#131227)Victor Stinner2025-03-141-3/+5
* gh-111178: Fix function signatures to fix undefined behavior (#131191)Victor Stinner2025-03-143-15/+21
* gh-111178: Fix function signatures for PyStdPrinter (#131192)Victor Stinner2025-03-141-11/+15
* gh-121464: Make concurrent iteration over enumerate safe under free-threading...Pieter Eendebak2025-03-131-20/+38
* gh-111178: Fix function signatures in misc files (#131180)Victor Stinner2025-03-131-4/+6
* gh-129149: Add fast path for medium-sized integers in `PyLong_FromSsize_t()` ...Chris Eibl2025-03-131-105/+40
* gh-111178: Fix function signatures in odictobject.c (#131160)Victor Stinner2025-03-131-57/+77
* gh-111178: Fix function signatures in rangeobject.c (#131161)Victor Stinner2025-03-131-24/+27
* gh-111178: Fix PyRangeIter_Type deallocator (#131162)Victor Stinner2025-03-131-1/+1
* gh-111178: Fix function signatures in iterobject.c (#131163)Victor Stinner2025-03-131-10/+15
* gh-111178: Change Argument Clinic signature for `@staticmethod` (#131157) (#1...Victor Stinner2025-03-133-6/+6
* GH-127705: Fix _Py_RefcntAdd to handle objects becoming immortal (GH-131140)Mark Shannon2025-03-121-1/+1
* gh-111178: Change Argument Clinic signature for `@classmethod` (#131157)Victor Stinner2025-03-1212-28/+93
* gh-115999: Add free-threaded specialization for FOR_ITER (#128798)T. Wouters2025-03-121-0/+26
* gh-120608: Make reversed iterator work with free-threading (#120971)Pieter Eendebak2025-03-121-9/+20
* gh-129349: Accept bytes in bytes.fromhex()/bytearray.fromhex() (#129844)Daniel Pope2025-03-124-68/+54
* gh-111178: Fix function signatures in rangeobject.c (#131101)Victor Stinner2025-03-121-23/+34
* gh-131113: Fix data race in dict.popitem() (gh-131115)Sam Gross2025-03-111-8/+8
* gh-111178: Change Argument Clinic signature for METH_O (#130682)Victor Stinner2025-03-1117-60/+190
* GH-127705: Use `_PyStackRef`s in the default build. (GH-127875)Mark Shannon2025-03-102-14/+20
* gh-130851: Only intern constants of types generated by the compiler (#130901)Sam Gross2025-03-071-2/+41
* gh-130932: Fix incorrect exception handling in _PyModule_IsPossiblyShadowing ...Shantanu2025-03-071-1/+3
* gh-118331: Fix a couple of issues when list allocation fails (#130811)mpage2025-03-051-0/+1
* gh-130851: Don't crash when deduping unusual code constants (#130853)Sam Gross2025-03-051-6/+12
* GH-127705: better double free message. (GH-130785)Mark Shannon2025-03-051-1/+1
* gh-130794: Process interpreter QSBR queue in _PyMem_AbandonDelayed. (gh-130808)Sam Gross2025-03-041-9/+22
* gh-105499: Merge typing.Union and types.UnionType (#105511)Jelle Zijlstra2025-03-042-110/+342
* gh-126085: Add `tp_iter` to TypeAliasType to allow star unpacking (#127981)Tomas R.2025-03-041-7/+8
* gh-130547: Fix race between dict_dealloc and split_keys_entry_added (gh-130778)Donghee Na2025-03-041-1/+1
* gh-111178: Fix function signatures in structseq.c (#130683)Victor Stinner2025-03-041-9/+12
* gh-111178: Fix function signatures of unicodeiter (#130684)Victor Stinner2025-03-041-19/+23
* gh-130599: use static constants str-to-int conversion (gh-130714)Neil Schemenauer2025-03-041-22/+53
* gh-124445: Allow specializing generic ParamSpec aliases (#124512)Tomas R.2025-03-031-2/+71
* gh-130790: Remove references about unicode's readiness from comments (#130801)Sergey Miryanov2025-03-032-2/+0
* gh-128974: Fix `UnicodeError.__str__` when custom attributes have side-effect...Bénédikt Tran2025-03-011-15/+44
* Postpone <stdbool.h> inclusion after Python.h (#130641)Hugo Beauzée-Luyssen2025-02-281-2/+2
* gh-127271: Remove the PyCell_Get usage for framelocalsproxy (#130383)Tian Gao2025-02-271-20/+59
* gh-129107: fix thread safety of `bytearray` where two critical sections are n...Tomasz Pytel2025-02-271-6/+20
* gh-111178: Fix function signatures in sliceobject.c (#130575)Victor Stinner2025-02-261-9/+17
* gh-111178: Fix function signatures in namespaceobject.c (#130590)Victor Stinner2025-02-261-10/+16
* gh-130519: Fix crash in QSBR when destructor reenters QSBR (gh-130553)Sam Gross2025-02-261-9/+31
* gh-117657: Use an atomic store to set type flags. (gh-127588)Neil Schemenauer2025-02-261-47/+83
* gh-130163: Fix crashes related to PySys_GetObject() (GH-130503)Serhiy Storchaka2025-02-251-1/+7
* gh-130202: Fix bug in `_PyObject_ResurrectEnd` in free threaded build (gh-130...Sam Gross2025-02-251-14/+32
* gh-87790: support thousands separators for formatting fractional part of floa...Sergey B Kirpichev2025-02-252-12/+28
* gh-111178: fix UBSan failures in `Objects/typevarobject.c` (GH-129800)Bénédikt Tran2025-02-251-89/+114
* gh-111178: fix UBSan failures in `Objects/typeobject.c` (#129799)Bénédikt Tran2025-02-251-68/+92
* GH-130396: Use computed stack limits on linux (GH-130398)Mark Shannon2025-02-251-30/+1
* GH-91079: Revert "GH-91079: Implement C stack limits using addresses, not cou...Petr Viktorin2025-02-241-1/+30
* gh-130313: Avoid locking when clearing objects (#130126)Dino Viehland2025-02-201-44/+73