summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
...
* gh-125196: Add a free list to PyUnicodeWriter (#125227)Victor Stinner2024-10-102-4/+10
* gh-125196: PyUnicodeWriter_Discard(NULL) does nothing (#125222)Victor Stinner2024-10-092-3/+4
* gh-125196: Use PyUnicodeWriter for repr(structseq) (#125219)Victor Stinner2024-10-091-41/+24
* gh-125196: Add fast-path for int in PyUnicodeWriter_WriteStr() (#125214)Victor Stinner2024-10-091-0/+8
* gh-125196: Use PyUnicodeWriter for repr(list) (#125202)Victor Stinner2024-10-091-22/+23
* gh-116510: Fix a Crash Due to Shared Immortal Interned Strings (gh-124865)Eric Snow2024-10-092-6/+86
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_STR) (#125194)Victor Stinner2024-10-093-7/+7
* gh-115754: Use Py_GetConstant(Py_CONSTANT_EMPTY_BYTES) (#125195)Victor Stinner2024-10-091-1/+1
* gh-111178: Fix function signatures in codeobject.c (#125180)Victor Stinner2024-10-091-32/+48
* gh-111178: Fix function signatures in cellobject.c (#125182)Victor Stinner2024-10-091-16/+23
* gh-124502: Remove _PyUnicode_EQ() function (#125114)Victor Stinner2024-10-092-33/+8
* gh-125063: Emit slices as constants in the bytecode compiler (#125064)Michael Droettboom2024-10-082-1/+2
* gh-124502: Optimize unicode_eq() (#125105)Victor Stinner2024-10-081-7/+12
* gh-115999: Stop the world when invalidating function versions (#124997)mpage2024-10-081-33/+56
* gh-123378: fix a crash in `UnicodeError.__str__` (#124935)Bénédikt Tran2024-10-081-45/+66
* gh-124502: Add PyUnicode_Equal() function (#124504)Victor Stinner2024-10-071-0/+18
* Use _PyLong_GetOne() and _PyLong_GetZero() in long_invmod() (#125044)Victor Stinner2024-10-071-11/+2
* gh-111178: Fix function signatures in genobject.c (#124970)Victor Stinner2024-10-051-206/+271
* gh-111178: Fix function signatures in classobject.c (#124943)Victor Stinner2024-10-041-17/+25
* gh-111178: Fix function signatures in bytearrayobject.c (#124940)Victor Stinner2024-10-041-48/+73
* gh-111178: Fix function signatures in funcobject.c (#124908)Victor Stinner2024-10-021-78/+116
* gh-111178: Fix function signatures in longobject.c (#124895)Victor Stinner2024-10-021-100/+139
* gh-111178: Fix function signatures in methodobject.c (#124902)Victor Stinner2024-10-021-39/+50
* gh-111178: Fix function signatures in weakrefobject.c (#124903)Victor Stinner2024-10-021-15/+20
* gh-111178: Fix function signatures in moduleobject.c (#124900)Victor Stinner2024-10-021-19/+44
* gh-111178: Fix function signatures in setobject.c (#124888)Victor Stinner2024-10-021-68/+90
* gh-111178: Fix function signatures in tupleobject.c (#124804)Victor Stinner2024-10-021-58/+64
* gh-111178: Fix function signatures in bytesobject.c (#124806)Victor Stinner2024-10-021-36/+41
* gh-124218: Refactor per-thread reference counting (#124844)Sam Gross2024-10-011-3/+3
* gh-124296: Remove private dictionary version tag (PEP 699) (#124472)Sam Gross2024-10-011-42/+21
* gh-124785: Revert "gh-116510: Fix crash due to shared immortal interned strin...T. Wouters2024-09-301-42/+6
* gh-124642: Dictionaries aren't marking objects as weakref'd (#124643)Dino Viehland2024-09-301-3/+3
* gh-123497: New limit for Python integers on 64-bit platforms (GH-123724)Serhiy Storchaka2024-09-292-136/+71
* gh-123339: Fix cases of inconsistency of __module__ and __firstlineno__ in cl...Serhiy Storchaka2024-09-281-0/+3
* gh-111178: fix some USAN failures - mismatched function pointers (GH-123004)Bénédikt Tran2024-09-273-7/+9
* GH-124547: Clear instance dictionary if memory error occurs during object dea...Mark Shannon2024-09-271-2/+9
* gh-116510: Fix crash due to shared immortal interned strings. (gh-124646)Neil Schemenauer2024-09-271-6/+42
* gh-119180: Rename SOURCE format to STRING (#124620)Jelle Zijlstra2024-09-261-1/+1
* gh-124153: Remove `_PyType_GetModuleByDef2` private function (GH-124261)neonene2024-09-261-28/+5
* gh-124498: Fix `TypeAliasType` not to be generic, when `type_params=()` (#124...sobolevn2024-09-261-1/+10
* gh-124538: Fix crash when using `gc.get_referents` on an untracked capsule ob...Peter Bierma2024-09-261-3/+7
* gh-119180: Disallow instantiation of ConstEvaluator objects (#124561)Jelle Zijlstra2024-09-251-2/+3
* gh-124513: Check args in framelocalsproxy_new() (#124515)Victor Stinner2024-09-251-3/+20
* gh-112301: Use literal format strings in unicode_fromformat_arg (GH-124203)Petr Viktorin2024-09-251-43/+35
* gh-123923: Defer refcounting for `f_funcobj` in `_PyInterpreterFrame` (#124026)Sam Gross2024-09-243-10/+8
* gh-124127: Make Py_REFCNT() opaque in limited C API 3.14 (#124128)Victor Stinner2024-09-241-1/+11
* gh-123990: Good bye WITH_FREELISTS macro (gh-124358)Donghee Na2024-09-245-19/+1
* gh-119004: fix a crash in equality testing between `OrderedDict` (#121329)Bénédikt Tran2024-09-231-8/+25
* gh-119771: Set errno on overflows in _Py_c_pow() (#120256)Sergey B Kirpichev2024-09-181-1/+3
* gh-124153: Implement `PyType_GetBaseByToken()` and `Py_tp_token` slot (GH-124...neonene2024-09-183-2/+144