aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* gh-126076: Account for relocated objects in tracemalloc (#126077)Pablo Galindo Salgado6 days4-15/+5
* Revert "GH-126491: GC: Mark objects reachable from roots before doing cycle c...Hugo van Kemenade6 days2-19/+98
* gh-126594: Fix typeobject.c wrap_buffer() cast (#126754)Victor Stinner6 days1-3/+3
* GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...Mark Shannon6 days2-98/+19
* gh-123465: Ensure PyType_FromMetaclass avoids extra strcmp (GH-125460)neonene11 days1-2/+2
* gh-123619: Add an unstable C API function for enabling deferred reference cou...Peter Bierma11 days1-0/+29
* gh-126341: add release check to `__iter__` method of `memoryview` (#126759)Ritvik Pasham12 days1-0/+1
* gh-126061: Add PyLong_IsPositive/Zero/Negative() functions (#126065)RUANG (James Roy)12 days1-0/+33
* GH-126547: Pre-assign version numbers for a few common classes (GH-126551)Mark Shannon2024-11-0810-1/+13
* gh-122943: Add the varpos parameter in _PyArg_UnpackKeywords (GH-126564)Serhiy Storchaka2024-11-0816-68/+119
* gh-122943: Remove the object converter for var-positional parameter (GH-126560)Serhiy Storchaka2024-11-081-2/+2
* gh-122943: Rework support of var-positional parameter in Argument Clinic (GH-...Serhiy Storchaka2024-11-073-109/+99
* gh-126298: Don't deduplicate slice constants based on equality (#126398)Michael Droettboom2024-11-071-1/+34
* gh-126303: Fix pickling and copying of os.sched_param objects (GH-126336)Serhiy Storchaka2024-11-051-0/+6
* gh-115999: Implement thread-local bytecode and enable specialization for `BIN...mpage2024-11-043-13/+321
* gh-120026: soft deprecate Py_HUGE_VAL macro (#120027)Sergey B Kirpichev2024-11-011-1/+1
* gh-90370: Argument Clinic: avoid temporary tuple creation for varargs (#126064)Sergey B Kirpichev2024-10-312-93/+65
* gh-126072: do not add `None` to `co_consts` if there is no docstring (GH-126101)Xuanteng Huang2024-10-301-1/+2
* gh-116938: Fix `dict.update` docstring and remove erraneous full stop from `d...Prometheus33752024-10-291-2/+2
* GH-125837: Split `LOAD_CONST` into three. (GH-125972)Mark Shannon2024-10-291-2/+0
* gh-126012: Add `__class_getitem__` to `memoryview` (#126013)Brian Schubert2024-10-271-0/+1
* gh-121654: Add PyType_Freeze() function (#122457)Victor Stinner2024-10-251-13/+52
* gh-125900: Clean-up logic around immortalization in free-threading (#125901)Sam Gross2024-10-241-14/+6
* gh-123930: Better error for "from imports" when script shadows module (#123929)Shantanu2024-10-241-12/+16
* gh-124218: Avoid refcount contention on builtins module (GH-125847)Sam Gross2024-10-243-42/+41
* gh-125286: Share the Main Refchain With Legacy Interpreters (gh-125709)Eric Snow2024-10-232-56/+44
* fix grammar in comment in dictobject.c (#125822)Arjun Singh2024-10-221-1/+1
* gh-124218: Use per-thread reference counting for globals and builtins (#125713)Sam Gross2024-10-213-7/+52
* gh-125590: Allow FrameLocalsProxy to delete and pop keys from extra locals (#...Tian Gao2024-10-211-6/+70
* gh-125608: Trigger dictionary watchers when inline values change (#125611)Sam Gross2024-10-211-6/+15
* gh-125604: Move _Py_AuditHookEntry, etc. Out of pycore_runtime.h (gh-125605)Eric Snow2024-10-181-0/+1
* gh-125017: Fix refleak from GH-125636 (GH-125664)Zachary Ware2024-10-171-0/+1
* gh-125017: Fix crash on premature access to classmethod/staticmethod annotati...Jelle Zijlstra2024-10-171-14/+27
* gh-124218: Use per-thread refcounts for code objects (#125216)Sam Gross2024-10-153-6/+12
* GH-125323: Convert DECREF_INPUTS_AND_REUSE_FLOAT into a function that takes P...Mark Shannon2024-10-141-0/+35
* gh-124787: Fix `TypeAliasType` and incorrect `type_params` (#124795)sobolevn2024-10-111-11/+86
* gh-125221: Fix free-threading data race in `object.__reduce_ex__` (#125267)Sam Gross2024-10-112-15/+13
* gh-125196: Use PyUnicodeWriter for repr(dict) (#125270)Victor Stinner2024-10-101-36/+36
* GH-125174: Make immortal objects more robust, following design from PEP 683 (...Mark Shannon2024-10-105-12/+16
* gh-124153: Simplify PyType_GetBaseByToken (GH-124488)neonene2024-10-101-80/+43
* gh-125196: Use PyUnicodeWriter for repr(tuple) (#125242)Victor Stinner2024-10-101-26/+24
* 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-101-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