index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Objects
/
dictobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
[3.13] gh-117657: Fix missing atomic in dict_resize (GH-119312) (#119417)
Miss Islington (bot)
2024-05-22
1
-1/+1
*
[3.13] gh-118849: Fix "code will never be executed" warning in `dictobject.c`...
Miss Islington (bot)
2024-05-09
1
-1/+1
*
gh-112075: Fix race in constructing dict for instance (#118499)
Dino Viehland
2024-05-06
1
-69/+71
*
gh-118362: Fix thread safety around lookups from the type cache in the face o...
Dino Viehland
2024-05-06
1
-11/+39
*
gh-118331: Handle errors in _PyObject_SetManagedDict (#118334)
Sam Gross
2024-04-29
1
-11/+18
*
gh-112075: _Py_dict_lookup needs to lock shared keys (#117528)
Dino Viehland
2024-04-25
1
-127/+158
*
gh-117657: Fixes a few small TSAN issues in dictobject (#118200)
Dino Viehland
2024-04-25
1
-11/+14
*
gh-112075: Make instance attributes stored in inline "dict" thread safe (#114...
Dino Viehland
2024-04-22
1
-70/+315
*
Fix a typo in dictobject.c documentation (#117515)
Noah Kim
2024-04-19
1
-1/+1
*
gh-117657: use relaxed loads for checking dict keys immortality (#118067)
Dino Viehland
2024-04-19
1
-2/+2
*
gh-112069: Add _PySet_NextEntryRef to be thread-safe. (gh-117990)
Donghee Na
2024-04-18
1
-2/+3
*
GH-117750: When clearing object's dict, clear inline values but leave dict at...
Mark Shannon
2024-04-15
1
-15/+18
*
gh-117826: Remove lookdict_index from delitemif_lock_held (gh-117869)
Donghee Na
2024-04-15
1
-5/+2
*
gh-117439: Make refleak checking thread-safe without the GIL (#117469)
Sam Gross
2024-04-08
1
-5/+5
*
gh-111926: Make weakrefs thread-safe in free-threaded builds (#117168)
mpage
2024-04-08
1
-4/+4
*
gh-112075: Make _PyDict_LoadGlobal thread safe (#117529)
Dino Viehland
2024-04-04
1
-25/+17
*
GH-115776: Embed the values array into the object, for "normal" Python object...
Mark Shannon
2024-04-02
1
-227/+237
*
gh-112075: Enable freeing with qsbr and fallback to lock on key changed (GH-1...
Dino Viehland
2024-03-05
1
-6/+3
*
gh-116029: Fix unused function warning on macOS (#116340)
Sam Gross
2024-03-05
1
-2/+2
*
gh-115941: fixes in dictobject.c doc block(#116196)
Humbulani
2024-03-01
1
-1/+2
*
gh-112075: Avoid locking shared keys on every assignment (#116087)
Dino Viehland
2024-02-29
1
-12/+20
*
gh-112075: Use relaxed stores for places where we may race with when reading ...
Dino Viehland
2024-02-28
1
-18/+25
*
gh-112075: Remove compiler warning from apple clang (gh-115855)
Donghee Na
2024-02-28
1
-2/+2
*
gh-112075: Iterating a dict shouldn't require locks (#115108)
Dino Viehland
2024-02-22
1
-60/+264
*
gh-112075: Accessing a single element should optimistically avoid locking (#1...
Dino Viehland
2024-02-21
1
-158/+492
*
gh-112075: Make PyDictKeysObject thread-safe (#114741)
Dino Viehland
2024-02-21
1
-92/+198
*
gh-111968: Split _Py_dictkeys_freelist out of _Py_dict_freelist (gh-115505)
Donghee Na
2024-02-16
1
-20/+31
*
gh-111968: Rename freelist related struct names to Eric's suggestion (gh-115329)
Donghee Na
2024-02-14
1
-31/+20
*
gh-110481: Implement inter-thread queue for biased reference counting (#114824)
Sam Gross
2024-02-09
1
-1/+15
*
gh-112075: Add critical sections for most dict APIs (#114508)
Dino Viehland
2024-02-06
1
-236/+630
*
gh-112066: Add `PyDict_SetDefaultRef` function. (#112123)
Sam Gross
2024-02-06
1
-20/+71
*
GH-113710: Add a "globals to constants" pass (GH-114592)
Mark Shannon
2024-02-02
1
-1/+2
*
gh-111968: Use per-thread freelists for dict in free-threading (gh-114323)
Donghee Na
2024-02-01
1
-49/+39
*
gh-112075: refactor dictionary lookup functions for better re-usability (#114...
Dino Viehland
2024-01-30
1
-97/+95
*
gh-112075: Use PyMem_* for allocating dict keys objects (#114543)
Dino Viehland
2024-01-29
1
-43/+23
*
gh-112075: Adapt more dict methods to Argument Clinic (#114256)
Dino Viehland
2024-01-23
1
-80/+82
*
gh-111178: Avoid calling functions from incompatible pointer types in dictobj...
Christopher Chavez
2024-01-02
1
-100/+126
*
gh-112026: Restore removed _PyDict_GetItemStringWithError() (#112119)
Victor Stinner
2023-11-15
1
-0/+14
*
gh-112026: Restore removed private C API (#112115)
Victor Stinner
2023-11-15
1
-1/+1
*
gh-111262: Add PyDict_Pop() function (#112028)
Victor Stinner
2023-11-14
1
-32/+87
*
gh-106672: C API: Report indiscriminately ignored errors (GH-106674)
Serhiy Storchaka
2023-11-07
1
-5/+21
*
gh-108082: Use PyErr_FormatUnraisable() (GH-111580)
Serhiy Storchaka
2023-11-02
1
-7/+2
*
gh-107073: Make PyObject_VisitManagedDict() public (#108763)
Victor Stinner
2023-10-02
1
-2/+2
*
gh-108511: Add C API functions which do not silently ignore errors (GH-109025)
Serhiy Storchaka
2023-09-17
1
-4/+3
*
Add missing `PyDoc_STR` calls (#109393)
Nikita Sobolev
2023-09-15
1
-1/+1
*
gh-106320: Remove private _PyEval function (#108433)
Victor Stinner
2023-08-24
1
-0/+1
*
gh-108308: Remove _PyDict_GetItemStringWithError() function (#108426)
Victor Stinner
2023-08-24
1
-13/+0
*
gh-108314: Add PyDict_ContainsString() function (#108323)
Victor Stinner
2023-08-24
1
-0/+12
*
GH-106485: Create object's dict-values instead of creating __dict__, when we ...
Mark Shannon
2023-08-11
1
-3/+1
*
GH-106485: Handle dict subclasses correctly when dematerializing `__dict__` (...
Mark Shannon
2023-08-10
1
-6/+8
[next]