summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* gh-118527: Use deferred reference counting for C functions on modules (#118529)Sam Gross2024-05-031-0/+1
* gh-116322: Add Py_mod_gil module slot (#116882)Brett Simmers2024-05-032-0/+36
* gh-116126: Implement PEP 696 (#116129)Jelle Zijlstra2024-05-032-47/+450
* gh-116738: Make `_codecs` module thread-safe (#117530)Brett Simmers2024-05-021-1/+5
* gh-118519: Fix empty weakref list check (#118520)Dino Viehland2024-05-021-1/+1
* gh-117657: Fix TSAN list set failure (#118260)Dino Viehland2024-05-021-3/+6
* gh-93502: Add new C-API functions to trace object creation and destruction (#...Pablo Galindo Salgado2024-05-021-6/+31
* GH-118095: Make invalidating and clearing executors memory safe (GH-118459)Mark Shannon2024-05-011-1/+2
* GH-117881: fix athrow().throw()/asend().throw() concurrent access (GH-117882)Thomas Grainger2024-05-011-0/+37
* gh-118335: Configure Tier 2 interpreter at build time (#118339)Guido van Rossum2024-05-012-0/+10
* [gh-117657] Fix some issues with TSAN in typeobject (#118249)Dino Viehland2024-04-301-6/+11
* gh-117657: Fix small issues with instrumentation and TSAN (#118064)Dino Viehland2024-04-301-3/+5
* gh-118272: Clear generator frame's locals when the generator is closed (#118277)Irit Katriel2024-04-301-0/+1
* gh-118331: Handle errors in _PyObject_SetManagedDict (#118334)Sam Gross2024-04-292-12/+19
* gh-117783: Immortalize objects that use deferred reference counting (#118112)Sam Gross2024-04-291-0/+7
* gh-118331: Don't raise an error if tuple allocation fails when clearing weakr...mpage2024-04-291-1/+3
* gh-107674: Lazy load line number to improve performance of tracing (GH-118127)Tian Gao2024-04-291-4/+12
* gh-112075: _Py_dict_lookup needs to lock shared keys (#117528)Dino Viehland2024-04-251-127/+158
* gh-117657: Fixes a few small TSAN issues in dictobject (#118200)Dino Viehland2024-04-251-11/+14
* gh-112069: Do not require lock if the set has never been exposed. (gh-118069)Donghee Na2024-04-251-0/+7
* gh-117578: Introduce _PyType_GetModuleByDef2 private function (GH-117661)neonene2024-04-251-7/+45
* GH-118095: Handle `RETURN_GENERATOR` in tier 2 (GH-118180)Mark Shannon2024-04-251-5/+0
* gh-108191: Add support of positional argument in SimpleNamespace constructor ...Serhiy Storchaka2024-04-241-3/+21
* GH-117536: GH-117894: fix athrow().throw(...) unawaited warning (GH-117851)Thomas Grainger2024-04-241-1/+8
* gh-95754: Better error when script shadows a standard library or third party ...Shantanu2024-04-231-53/+191
* gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...Dino Viehland2024-04-223-103/+357
* ``Objects/typeobject.c``: Fix typo (#118126)Kirill Podoprigora2024-04-211-1/+1
* [gh-117657] _Py_MergeZeroLocalRefcount isn't loading ob_ref_shared with stron...Dino Viehland2024-04-191-1/+1
* Fix a typo in dictobject.c documentation (#117515)Noah Kim2024-04-191-1/+1
* gh-117657: use relaxed loads for checking dict keys immortality (#118067)Dino Viehland2024-04-191-2/+2
* setobject: remove out of date docstring info (GH-118048)Rostyslav Lobov2024-04-191-1/+1
* gh-112069: Make PySet_GET_SIZE to be atomic safe. (gh-118053)Donghee Na2024-04-181-1/+0
* gh-112069: Add _PySet_NextEntryRef to be thread-safe. (gh-117990)Donghee Na2024-04-183-5/+21
* fix formatting of literal in docstring of int.from_bytes and int.to_bytes (#1...Jens Hedegaard Nielsen2024-04-182-7/+7
* Fix two typos in `typeobject.c` (#118024)Nikita Sobolev2024-04-181-2/+2
* gh-94673: Fix compiler warning in typeobject.c (#117980)Erlend E. Aasland2024-04-171-0/+2
* gh-117657: Fix data races in the method cache in free-threaded builds (#117954)mpage2024-04-171-3/+5
* gh-117680: make _PyInstructionSequence a PyObject and use it in tests (#117629)Irit Katriel2024-04-171-0/+2
* GH-117760: Streamline the trashcan mechanism (GH-117763)Mark Shannon2024-04-171-99/+15
* gh-117755: Fix mimalloc for huge allocation on s390x (#117809)Victor Stinner2024-04-161-0/+6
* gh-117376: Make code objects use deferred reference counting (#117823)Sam Gross2024-04-161-1/+32
* gh-112069: Make setiter_iternext to be thread-safe (gh-117935)Donghee Na2024-04-161-12/+17
* GH-117750: When clearing object's dict, clear inline values but leave dict at...Mark Shannon2024-04-151-15/+18
* gh-117826: Remove lookdict_index from delitemif_lock_held (gh-117869)Donghee Na2024-04-151-5/+2
* gh-94673: Clarify About Runtime State Related to Static Builtin Types (gh-117...Eric Snow2024-04-121-1/+6
* gh-117376: Partial implementation of deferred reference counting (#117696)Sam Gross2024-04-125-18/+44
* gh-117764: Add docstrings and signatures for the types of None, Ellipsis and ...Serhiy Storchaka2024-04-122-3/+18
* gh-117764: Fix and add signatures for many builtins (GH-117769)Serhiy Storchaka2024-04-127-13/+28
* gh-117764: Add docstrings and signatures for the __replace__ methods (GH-117768)Serhiy Storchaka2024-04-123-3/+8
* gh-117431: Adapt bytes and bytearray .find() and friends to Argument Clinic (...Erlend E. Aasland2024-04-126-159/+684