summaryrefslogtreecommitdiffstats
path: root/Objects/dictobject.c
Commit message (Expand)AuthorAgeFilesLines
* gh-102701: Fix overflow in dictobject.c (GH-102750)Miss Islington (bot)2023-03-171-1/+1
* [3.11] gh-99886: Fix crash when freeing objects with managed dictionaries (#9...Ken Jin2022-12-041-3/+5
* Revert "[3.11] GH-92678: Expose managed dict clear and visit functions (GH-95...Mark Shannon2022-08-041-29/+0
* [3.11] GH-92678: Expose managed dict clear and visit functions (GH-95246). (#...Pablo Galindo Salgado2022-07-251-0/+29
* bpo-43857: Improve the AttributeError message when deleting a missing attribu...Géry Ogam2022-05-051-1/+3
* Add more stats for freelist use and allocations. (GH-92211)Mark Shannon2022-05-031-0/+5
* gh-91320: Use _PyCFunction_CAST() (#92251)Victor Stinner2022-05-031-6/+6
* bpo-47164: Add _PyASCIIObject_CAST() macro (GH-32191)Victor Stinner2022-03-311-1/+1
* bpo-46903: Handle str-subclasses in virtual instance dictionaries. (GH-31658)Mark Shannon2022-03-041-10/+18
* dict: Fix refleak (GH-31650)Inada Naoki2022-03-031-4/+8
* dict: Internal cleanup (GH-31641)Inada Naoki2022-03-021-66/+44
* bpo-46845: Reduce dict size when all keys are Unicode (GH-31564)Inada Naoki2022-03-011-405/+778
* bpo-45459: C API uses type names rather than structure names (GH-31528)Victor Stinner2022-02-241-3/+3
* dict: Add dk_log2_index_bytes (GH-31439)Inada Naoki2022-02-221-23/+27
* dict: Use DK_LOG_SIZE in hot loop. (GH-31405)Inada Naoki2022-02-191-12/+12
* bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g...Eric Snow2022-02-081-17/+23
* bpo-46675: Allow object value arrays and split key dictionaries larger than 1...Mark Shannon2022-02-081-39/+59
* bpo-46670: Remove unused macros in the Objects directory (GH-31193)Victor Stinner2022-02-071-1/+0
* bpo-46072: Add some object layout and allocation stats (GH-31051)Mark Shannon2022-02-011-0/+12
* bpo-46417: Use _PyType_CAST() in Objects directory (GH-30764)Victor Stinner2022-01-211-2/+1
* bpo-45947: Place dict and values pointer at fixed (negative) offset just befo...Mark Shannon2021-12-071-33/+53
* bpo-45609: Specialize STORE_SUBSCR (GH-29242)Dennis Sweeney2021-11-191-21/+47
* bpo-45522: Allow to disable freelists on build time (GH-29056)Christian Heimes2021-10-211-4/+23
* bpo-45340: Don't create object dictionaries unless actually needed (GH-28802)Mark Shannon2021-10-131-145/+289
* bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895)Victor Stinner2021-10-121-7/+8
* bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891)Victor Stinner2021-10-111-1/+1
* bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon2021-10-061-130/+151
* Clean up initialization __class_getitem__ with Py_GenericAlias. (GH-28450)Serhiy Storchaka2021-09-191-1/+1
* bpo-45219: Factor dictkey indexing (GH-28389)Mark Shannon2021-09-171-42/+84
* bpo-44826: Specialize STORE_ATTR (GH-27590)Mark Shannon2021-08-091-3/+1
* bpo-44821: Eagerly assign __dict__ for new objects. (GH-27589)Mark Shannon2021-08-041-3/+28
* bpo-44206: Make sure that dict-keys's version is set to zero when value is po...Mark Shannon2021-08-021-0/+1
* bpo-44531: Add _PyType_AllocNoTrack() function (GH-26947)Victor Stinner2021-07-011-11/+19
* bpo-44337: Port LOAD_ATTR to PEP 659 adaptive interpreter (GH-26595)Mark Shannon2021-06-101-20/+2
* Fix MSVC compiler warnings in dictobject.c (GH-26432)Mark Shannon2021-05-291-2/+2
* bpo-44206: Fix compiler warnings in dictobject.c (GH-26440)Pablo Galindo2021-05-281-3/+3
* bpo-44206: Add a version number to dictionary keys (GH-26333)Mark Shannon2021-05-281-288/+192
* bpo-44114: Remove redundant cast. (GH-26098)Inada Naoki2021-05-131-2/+2
* bpo-44114: Fix dictkeys_reversed and dictvalues_reversed function signatures ...Joe Marshall2021-05-131-4/+4
* bpo-43977: Use tp_flags for collection matching (GH-25723)Mark Shannon2021-04-301-1/+1
* bpo-24275: Don't downgrade unicode-only dicts to mixed on lookups (GH-25186)Hristo Venev2021-04-291-3/+6
* bpo-43770: Refactor type_new() function (GH-25325)Victor Stinner2021-04-101-2/+4
* bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917)Brandt Bucher2021-02-261-1/+2
* bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582)Victor Stinner2021-02-211-31/+4
* bpo-43277: Add PySet_CheckExact to the C-API (GH-24598)Pablo Galindo2021-02-201-1/+1
* bpo-43268: Pass interp rather than tstate to internal functions (GH-24580)Victor Stinner2021-02-191-5/+5
* bpo-42536: GC track recycled tuples (GH-23623)Brandt Bucher2020-12-051-0/+10
* bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587)Victor Stinner2020-12-011-4/+4
* bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586)Victor Stinner2020-12-011-1/+1
* bpo-42152: Use PyDict_Contains and PyDict_SetDefault if appropriate. (GH-22986)Serhiy Storchaka2020-10-261-23/+22