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
*
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
*
GH-106485: Dematerialize instance dictionaries when possible (GH-106539)
Brandt Bucher
2023-08-09
1
-0/+33
*
gh-106320: Remove private _PyObject C API (#107147)
Victor Stinner
2023-07-23
1
-1/+1
*
gh-106320: Move private _PySet API to the internal API (#107041)
Victor Stinner
2023-07-22
1
-0/+1
*
gh-106004: Add PyDict_GetItemRef() function (#106005)
Victor Stinner
2023-07-21
1
-16/+61
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-1/+1
*
GH-91095: Specialize calls to normal Python classes. (GH-99331)
Mark Shannon
2023-06-22
1
-4/+3
*
gh-104717: Add comment about manual loop unrolling (gh-104718)
Dong-hee Na
2023-05-21
1
-0/+1
*
gh-104252: Immortalize Py_EMPTY_KEYS (gh-104253)
Eric Snow
2023-05-10
1
-11/+21
*
gh-102304: Move the Total Refcount to PyInterpreterState (gh-102545)
Eric Snow
2023-03-21
1
-5/+5
*
gh-102701: Fix overflow in dictobject.c (GH-102750)
Inada Naoki
2023-03-17
1
-1/+1
*
gh-100227: Move dict_state.global_version to PyInterpreterState (gh-102338)
Eric Snow
2023-03-09
1
-90/+146
*
gh-100227: Move next_keys_version to PyInterpreterState (gh-102335)
Eric Snow
2023-03-09
1
-3/+4
*
gh-102304: Consolidate Direct Usage of _Py_RefTotal (gh-102514)
Eric Snow
2023-03-08
1
-5/+5
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-03-08
1
-1/+1
*
gh-102381: don't call watcher callback with dead object (#102382)
Carl Meyer
2023-03-08
1
-3/+31
*
GH-101578: Normalize the current exception (GH-101607)
Mark Shannon
2023-02-08
1
-3/+3
*
gh-99845: Change _PyDict_KeysSize() return type to size_t (#99848)
Victor Stinner
2022-11-29
1
-31/+26
*
gh-81057: Move the global Dict-Related Versions to _PyRuntimeState (gh-99497)
Eric Snow
2022-11-16
1
-14/+7
*
gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)
Victor Stinner
2022-11-16
1
-6/+3
*
gh-99300: Use Py_NewRef() in Objects/dictobject.c (#99333)
Victor Stinner
2022-11-10
1
-92/+48
*
gh-91052: Add PyDict_Unwatch for unwatching a dictionary (#98055)
Carl Meyer
2022-10-08
1
-11/+30
*
GH-91052: Add C API for watching dictionaries (GH-31787)
Carl Meyer
2022-10-07
1
-15/+104
*
Fix minor comment typo in dictobject.c (GH-96960)
Samuel
2022-09-20
1
-1/+1
*
gh-96364: Fix text signatures of `__getitem__` for `list` and `dict` (GH-96365)
Nikita Sobolev
2022-09-09
1
-1/+2
*
Remove dead code in _PyDict_GetItemHint and rename to _PyDict_LookupIndex (GH...
Matthias Görgens
2022-08-18
1
-41/+3
*
GH-95245: Store object values and dict pointers in single tagged pointer. (GH...
Mark Shannon
2022-08-01
1
-71/+90
*
GH-92678: Expose managed dict clear and visit functions (#95246)
Mark Shannon
2022-07-25
1
-0/+29
*
bpo-43857: Improve the AttributeError message when deleting a missing attribu...
Géry Ogam
2022-05-05
1
-1/+3
*
Add more stats for freelist use and allocations. (GH-92211)
Mark Shannon
2022-05-03
1
-0/+5
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-6/+6
*
bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)
Victor Stinner
2022-03-31
1
-1/+1
[next]