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
/
odictobject.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
gh-142217: Remove internal _Py_Identifier functions (#142219)
Victor Stinner
2025-12-03
1
-1/+0
*
gh-125996: fix thread safety of `collections.OrderedDict` (#133734)
Kumar Aditya
2025-10-13
1
-68/+145
*
gh-138516: fix typo in OrderedDict exception msg (#138517)
asas1asas200
2025-09-05
1
-1/+1
*
GH-137623: Use an AC decorator for docstring line length enforcement (#137690)
Adam Turner
2025-08-18
1
-2/+4
*
gh-135607: remove null checking of weakref list in dealloc of extension modul...
Xuanteng Huang
2025-06-30
1
-2/+2
*
GH-124715: Move trashcan mechanism into `Py_Dealloc` (GH-132280)
Mark Shannon
2025-04-30
1
-3/+0
*
gh-131525: Cache the result of tuple_hash (#131529)
Michael Droettboom
2025-03-27
1
-3/+2
*
gh-111178: Fix function signatures for test_types (#131455)
Victor Stinner
2025-03-19
1
-4/+6
*
gh-111178: Fix function signatures in odictobject.c (#131160)
Victor Stinner
2025-03-13
1
-57/+77
*
gh-128863: Deprecate private C API functions (#128864)
Victor Stinner
2025-01-22
1
-1/+1
*
gh-119004: fix a crash in equality testing between `OrderedDict` (#121329)
Bénédikt Tran
2024-09-23
1
-8/+25
*
Replace PyObject_Del with PyObject_Free (#122453)
Victor Stinner
2024-08-01
1
-1/+1
*
Remove almost all unpaired backticks in docstrings (#119231)
Geoffrey Thomas
2024-05-22
1
-1/+1
*
gh-112075: Make _PyDict_LoadGlobal thread safe (#117529)
Dino Viehland
2024-04-04
1
-1/+5
*
gh-112075: Add critical sections for most dict APIs (#114508)
Dino Viehland
2024-02-06
1
-7/+12
*
gh-111262: Add PyDict_Pop() function (#112028)
Victor Stinner
2023-11-14
1
-1/+4
*
gh-106320: Remove private _PyErr_ChainExceptions() (#108713)
Victor Stinner
2023-08-31
1
-2/+3
*
gh-106320: Remove private _PyEval function (#108433)
Victor Stinner
2023-08-24
1
-0/+1
*
gh-106521: Remove _PyObject_LookupAttr() function (GH-106642)
Serhiy Storchaka
2023-07-12
1
-2/+2
*
gh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in...
Irit Katriel
2023-03-08
1
-3/+2
*
gh-101747: Fix refleak in new `OrderedDict` repr (GH-101748)
Nikita Sobolev
2023-02-10
1
-0/+1
*
gh-101446: Change `repr` of `collections.OrderedDict` (#101661)
Nikita Sobolev
2023-02-08
1
-47/+6
*
gh-99300: Replace Py_INCREF() with Py_NewRef() (#99530)
Victor Stinner
2022-11-16
1
-2/+1
*
gh-99300: Use Py_NewRef() in Objects/ directory (#99354)
Victor Stinner
2022-11-10
1
-16/+8
*
gh-91320: Use _PyCFunction_CAST() (#92251)
Victor Stinner
2022-05-03
1
-1/+1
*
bpo-26579: Add object.__getstate__(). (GH-2821)
Serhiy Storchaka
2022-04-06
1
-15/+5
*
bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...
Eric Snow
2022-02-08
1
-12/+7
*
bpo-46085: Fix iterator cache mechanism of OrderedDict. (GH-30290)
Dong-hee Na
2021-12-30
1
-3/+5
*
bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)
Victor Stinner
2021-10-12
1
-3/+3
*
bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)
Victor Stinner
2021-10-11
1
-3/+3
*
bpo-27275: Change popitem() and pop() methods of collections.OrderedDict (GH-...
Serhiy Storchaka
2021-08-03
1
-67/+26
*
bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)
Mark Shannon
2021-06-10
1
-1/+1
*
Fix MSVC compiler warnings in dictobject.c (GH-26432)
Mark Shannon
2021-05-29
1
-2/+4
*
bpo-44206: Add a version number to dictionary keys (GH-26333)
Mark Shannon
2021-05-28
1
-6/+6
*
bpo-42536: GC track recycled tuples (GH-23623)
Brandt Bucher
2020-12-05
1
-0/+5
*
bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)
Victor Stinner
2020-12-01
1
-1/+1
*
bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)
Victor Stinner
2020-12-01
1
-5/+5
*
bpo-41333: Convert OrderedDict.pop() to Argument Clinic (GH-21534)
Serhiy Storchaka
2020-07-19
1
-20/+17
*
bpo-40268: Remove unused structmember.h includes (GH-19530)
Victor Stinner
2020-04-15
1
-1/+1
*
bpo-40268: Remove a few pycore_pystate.h includes (GH-19510)
Victor Stinner
2020-04-14
1
-2/+1
*
bpo-36144: OrderedDict Union (PEP 584) (#18967)
Brandt Bucher
2020-03-13
1
-75/+120
*
bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and ...
Pablo Galindo
2020-03-02
1
-2/+0
*
bpo-39573: Use Py_SET_SIZE() function (GH-18402)
Victor Stinner
2020-02-07
1
-2/+3
*
bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254)
Hai Shi
2020-01-30
1
-3/+2
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-3/+3
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-10/+10
*
bpo-35983: skip trashcan for subclasses (GH-11841)
Jeroen Demeyer
2019-05-10
1
-13/+2
*
bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)
Serhiy Storchaka
2019-03-13
1
-2/+2
*
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11...
Serhiy Storchaka
2018-12-11
1
-1/+2
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-2/+2
[next]