COMMITS
/ Objects/dictobject.c April 12, 2019
V
bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803)
Victor Stinner committed
I
bpo-20180: Use argument clinic for dict.pop() and dict.popitem() (GH-12792)
Inada Naoki committed
April 5, 2019
C
bpo-29202: improve dict iteration (GH-11900)
Cheryl Sabella committed
April 2, 2019
T
bpo-36473: add maximum iteration check for dict .values() and .items() (GH-12619)
Thomas Perl committed
March 28, 2019
T
bpo-36452: dictiter: track maximum iteration count (GH-12596)
Thomas Perl committed
March 24, 2019
Z
bpo-36412: fix a possible crash in dictobject.c's new_dict() (GH-12519)
Zackery Spytz committed
March 18, 2019
I
bpo-30040: optimize inserting into empty dict (GH-12307)
Inada Naoki committed
March 12, 2019
I
bpo-30040: new empty dict uses key-sharing dict (GH-1080)
Inada Naoki committed
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
December 11, 2018
S
bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047)
Serhiy Storchaka committed
November 27, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka committed
S
bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736)
Serhiy Storchaka committed
November 21, 2018
V
bpo-35081: Add Include/internal/pycore_object.h (GH-10640)
Victor Stinner committed
November 14, 2018
I
bpo-35230: dict: Remove some macros (GH-10513)
INADA Naoki committed
November 12, 2018
V
bpo-35081: Rename internal headers (GH-10275)
Victor Stinner committed
November 6, 2018
R
bpo-33462: Add __reversed__ to dict and dict views (GH-6827)
Rémi Lapeyre committed
November 1, 2018
V
bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266)
Victor Stinner committed
October 31, 2018
V
bpo-35081: Add pycore_ prefix to internal header files (GH-10263)
Victor Stinner committed
October 30, 2018
V
bpo-35081: Cleanup pystate.c and pystate.h (GH-10240)
Victor Stinner committed
October 26, 2018
V
bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108)
Victor Stinner committed
October 20, 2018
S
bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050)
Sergey Fedoseev committed
September 26, 2018
I
bpo-34320: Fix dict(o) didn't copy order of dict subclass (GH-8624)
INADA Naoki committed
July 6, 2018
Y
bpo-34042: Fix dict.copy() to maintain correct total refcount (GH-8119)
Yury Selivanov committed
April 29, 2018
S
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030)
Siddhesh Poyarekar committed
April 20, 2018
V
Spelling fixes to docs, docstrings, and comments (GH-6374)
Ville Skyttä committed
G
bpo-33312: Fix clang ubsan out of bounds warnings in dict. (GH-6537)
Gregory P. Smith committed
April 17, 2018
I
bpo-33205: dict: Change GROWTH_RATE to `used*3` (GH-6350)
INADA Naoki committed
April 3, 2018
I
bpo-33199: Initialize ma_version_tag in PyDict_Copy (GH-6341)
INADA Naoki committed
January 26, 2018
B
bpo-18533: Avoid RecursionError from repr() of recursive dictview (#4823)
bennorth committed
January 25, 2018
S
bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222)
Serhiy Storchaka committed
January 22, 2018
Y
bpo-31179: Make dict.copy() up to 5.5 times faster. (#3067)
Yury Selivanov committed
November 11, 2017
S
bpo-31572: Get rid of _PyObject_HasAttrId() in dict and OrderedDict. (#3728)
Serhiy Storchaka committed
November 5, 2017
L
Fix miscellaneous typos (#4275)
luzpaz committed
September 15, 2017
B
bpo-31338 (#3374)
Barry Warsaw committed
September 8, 2017
E
bpo-30860: Consolidate stateful runtime globals. (#3397)
Eric Snow committed
August 24, 2017
I
bpo-31095: fix potential crash during GC (GH-2974)
INADA Naoki committed
August 3, 2017
I
bpo-29304: Simplify dict lookup functions (GH-2407)
INADA Naoki committed
July 3, 2017
S
bpo-29464: Rename METH_FASTCALL to METH_FASTCALL|METH_KEYWORDS and make (#1955)
Serhiy Storchaka committed
June 24, 2017
I
bp-29304: Simplify dictobject.c (GH-2347)
INADA Naoki committed
June 23, 2017
I
bpo-29304: simplify lookdict_index() function. (GH-2273)
INADA Naoki committed
May 20, 2017
S
bpo-27945: Fixed various segfaults with dict. (#1657)
Serhiy Storchaka committed
March 31, 2017
T
bpo-29941: Assert fixes (#886)
T. Wouters committed
March 21, 2017
S
Don't use Py_SIZE for dict object. (#747)
Serhiy Storchaka committed
February 20, 2017
I
bpo-24274: fix erroneous comment in dictobject.c (GH-196)
INADA Naoki committed
February 12, 2017
I
bpo-29438: fixed use-after-free in key sharing dict (#17)
INADA Naoki committed
February 4, 2017
S
Issue #29311: Regenerate Argument Clinic.
Serhiy Storchaka committed
January 24, 2017
S
Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDict
Serhiy Storchaka committed
January 19, 2017
S
Issue #29311: Argument Clinic generates reasonable name for the parameter "default".
Serhiy Storchaka committed
V
Add a note explaining why dict_update() doesn't use METH_FASTCALL
Victor Stinner committed
V
dict.get() and dict.setdefault() now use AC
Victor Stinner committed