summaryrefslogtreecommitdiffstats
path: root/Objects/dictobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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-111-2/+2
* gh-130547: Fix race between dict_dealloc and split_keys_entry_added (gh-130778)Donghee Na2025-03-041-1/+1
* gh-130313: Avoid locking when clearing objects (#130126)Dino Viehland2025-02-201-44/+73
* gh-129984: Mark immortal objects as deferred (#129985)Dino Viehland2025-02-131-1/+1
* gh-117657: Fix data race in `dict_dict_merge` (gh-129755)Sam Gross2025-02-071-1/+1
* gh-129354: Fix grammar in PyErr_FormatUnraisable() (#129475)Victor Stinner2025-01-311-1/+1
* gh-129354: Use PyErr_FormatUnraisable() function (#129435)Victor Stinner2025-01-301-1/+2
* gh-112075: Remove critical section in dict.get (gh-129336)Pieter Eendebak2025-01-281-2/+1
* gh-128863: Deprecate private C API functions (#128864)Victor Stinner2025-01-221-3/+9
* gh-128923: Use zero to indicate unassigned unique id (#128925)Sam Gross2025-01-171-2/+4
* gh-115999: Specialize `LOAD_ATTR` for instance and class receivers in free-th...mpage2025-01-141-13/+54
* gh-115999: Specialize `STORE_ATTR` in free-threaded builds. (gh-127838)Neil Schemenauer2024-12-191-17/+49
* gh-127563: use `dk_log2_index_bytes=3` in empty dicts (GH-127568)Bénédikt Tran2024-12-101-1/+4
* gh-126491: Revert "GH-126491: Lower heap size limit with faster marking (GH-1...Petr Viktorin2024-12-101-1/+3
* GH-126491: Lower heap size limit with faster marking (GH-127519)Mark Shannon2024-12-061-3/+1
* gh-127582: Make object resurrection thread-safe for free threading. (GH-127612)Sam Gross2024-12-051-5/+2
* gh-127316: fix incorrect assertion in setting `__class__` in free-threading (...Kumar Aditya2024-11-291-1/+1
* gh-115999: Specialize `LOAD_GLOBAL` in free-threaded builds (#126607)mpage2024-11-211-10/+58
* gh-124470: Fix crash when reading from object instance dictionary while repla...Dino Viehland2024-11-211-32/+132
* GH-127010: Don't lazily track and untrack dicts (GH-127027)Mark Shannon2024-11-201-92/+19
* Revert "GH-126491: GC: Mark objects reachable from roots before doing cycle c...Hugo van Kemenade2024-11-191-19/+96
* GH-126491: GC: Mark objects reachable from roots before doing cycle collectio...Mark Shannon2024-11-181-96/+19
* GH-126547: Pre-assign version numbers for a few common classes (GH-126551)Mark Shannon2024-11-081-0/+1
* gh-116938: Fix `dict.update` docstring and remove erraneous full stop from `d...Prometheus33752024-10-291-2/+2
* gh-124218: Avoid refcount contention on builtins module (GH-125847)Sam Gross2024-10-241-0/+34
* 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-211-0/+18
* gh-125608: Trigger dictionary watchers when inline values change (#125611)Sam Gross2024-10-211-6/+15
* 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-101-3/+7
* gh-124296: Remove private dictionary version tag (PEP 699) (#124472)Sam Gross2024-10-011-42/+21
* gh-124642: Dictionaries aren't marking objects as weakref'd (#124643)Dino Viehland2024-09-301-3/+3
* GH-124547: Clear instance dictionary if memory error occurs during object dea...Mark Shannon2024-09-271-2/+9
* gh-123990: Good bye WITH_FREELISTS macro (gh-124358)Donghee Na2024-09-241-2/+0
* gh-121459: Add missing return to _PyDict_LoadGlobalStackRef (#124085)Sam Gross2024-09-141-2/+7
* gh-121459: Deferred LOAD_GLOBAL (GH-123128)Ken Jin2024-09-131-0/+74
* GH-115775: Use `__static_attributes__` to initialize shared keys (GH-118468)Mark Shannon2024-08-271-1/+16
* gh-123083: Fix a potential use-after-free in ``STORE_ATTR_WITH_HINT`` (gh-123...Donghee Na2024-08-221-0/+2
* gh-120974: Make asyncio `swap_current_task` safe in free-threaded build (#122...Sam Gross2024-08-021-16/+38
* gh-122208: Don't delivery PyDict_EVENT_ADDED until it can't fail (#122207)Dino Viehland2024-07-241-11/+8
* gh-120974: Make _asyncio._leave_task atomic in the free-threaded build (#122139)Sam Gross2024-07-231-15/+15
* gh-100240: Use a consistent implementation for freelists (#121934)Sam Gross2024-07-221-84/+19
* gh-121266: Remove Py_ALWAYS_INLINE in dictobject.c (#121493)Victor Stinner2024-07-181-3/+3
* gh-121266: Change dict check_lookup() return type to int (#121581)Victor Stinner2024-07-171-11/+11
* gh-121860: Fix crash when materializing managed dict (#121866)Sam Gross2024-07-161-5/+12
* 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-101-5/+10
* gh-117657: Fix data races reported by TSAN in some set methods (#120914)AN Long2024-07-011-84/+51
* gh-120858: PyDict_Next should not lock the dict (#120859)Sam Gross2024-06-241-7/+1