summaryrefslogtreecommitdiff
path: root/Objects/odictobject.c
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-2/+2
* bpo-33012: Fix signatures of METH_NOARGS functions. (GH-10736) (GH-10748)Serhiy Storchaka2018-11-271-1/+1
* bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349). ...Serhiy Storchaka2018-10-201-51/+19
* bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH...Miss Islington (bot)2018-10-191-28/+9
* fix two typos in Objects/odictobject.c comments (GH-8040)Miss Islington (bot)2018-07-061-2/+2
* [3.7] bpo-33031: Remove dead code in C implementation of OrderedDict. (GH-612...Serhiy Storchaka2018-04-091-76/+1
* bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ...Serhiy Storchaka2018-01-251-14/+6
* bpo-31572: Get rid of _PyObject_HasAttrId() in dict and OrderedDict. (#3728)Serhiy Storchaka2017-11-111-17/+34
* Add the const qualifier to "char *" variables that refer to literal strings. ...Serhiy Storchaka2017-11-111-2/+2
* bpo-31497: Add private helper _PyType_Name(). (#3630)Serhiy Storchaka2017-09-171-9/+3
* bpo-30860: Consolidate stateful runtime globals. (#3397)Eric Snow2017-09-071-0/+1
* bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (#2179)Jonathan Eunice2017-09-051-2/+1
* bpo-29304: Simplify dict lookup functions (GH-2407)INADA Naoki2017-08-031-1/+1
* bpo-29867: Add asserts in PyTuple_GET_SIZE, PyList_GET_SIZE and PySet_GET_SIZ...Serhiy Storchaka2017-04-221-1/+1
* Issues #29311, #29289: Fixed and improved docstrings for dict and OrderedDictSerhiy Storchaka2017-01-251-12/+11
* Issue #29289: Argument Clinic generates reasonable name for the parameter "de...Serhiy Storchaka2017-01-191-9/+9
* Convert some OrderedDict methods to Argument ClinicVictor Stinner2017-01-171-87/+84
* Merge doc fixes from 3.6Martin Panter2017-01-141-1/+1
|\
| * Merge doc fixes from 3.5Martin Panter2017-01-141-1/+1
| |\
| | * Fix grammar, typos and markup in documentation and code commentsMartin Panter2017-01-141-1/+1
* | | Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-2/+1
* | | Issue #28818: Simplify lookdict functionsINADA Naoki2016-12-071-2/+2
* | | Use _PyObject_CallNoArg()Victor Stinner2016-12-061-1/+1
* | | Backed out changeset b9c9691c72c5Victor Stinner2016-12-041-1/+1
* | | Replace PyObject_CallFunctionObjArgs() with fastcallVictor Stinner2016-12-011-1/+1
|/ /
* | Merge from 3.5.Serhiy Storchaka2016-10-301-7/+22
|\ \ | |/
| * Backed out changeset 9f7505019767 (issue #27275).Serhiy Storchaka2016-10-301-7/+22
* | Issue #27275: Fixed implementation of pop() and popitem() methods inSerhiy Storchaka2016-10-251-22/+7
|\ \ | |/
| * Issue #27275: Fixed implementation of pop() and popitem() methods inSerhiy Storchaka2016-10-251-22/+7
* | Issue #27576: Fix call order in OrderedDict.__init__().Eric Snow2016-09-091-2/+15
* | Issue #24254: Drop cls.__definition_order__.Eric Snow2016-09-081-15/+0
* | fix spellingBenjamin Peterson2016-09-081-1/+1
* | Implement compact dictVictor Stinner2016-09-071-5/+8
* | Issue #24254: Preserve class attribute definition order.Eric Snow2016-09-051-0/+15
* | Merge spelling and grammar fixes from 3.5Martin Panter2016-08-051-1/+1
|\ \ | |/
| * Fix spelling and grammar in documentation and code commentsMartin Panter2016-08-041-1/+1
* | odict: Remove useless ";" after function definitionVictor Stinner2016-06-081-9/+9
* | Issue #25949: __dict__ for an OrderedDict instance is now created only whenSerhiy Storchaka2016-02-081-16/+7
|/
* Issue #25935: Garbage collector now breaks reference loops with OrderedDict.Serhiy Storchaka2016-01-191-13/+14
* Issue #25914: Fixed and simplified OrderedDict.__sizeof__.Serhiy Storchaka2015-12-221-21/+1
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-2/+0
* Issue #25462: The hash of the key now is calculated only once in mostSerhiy Storchaka2015-11-131-35/+83
* Issue #25410: Made testing that od_fast_nodes and dk_entries are in sync moreSerhiy Storchaka2015-11-061-4/+8
* Issue #24726: Revert setting the value on the dict ifSerhiy Storchaka2015-11-061-1/+7
* Issue #25558: Refactoring OrderedDict iteration.Serhiy Storchaka2015-11-061-40/+31
* Issue #25449: Fixed a crash and leaking NULL in repr() of OrderedDict thatSerhiy Storchaka2015-11-041-2/+13
* Issue #25449: Iterating OrderedDict with keys with unstable hash now raisesSerhiy Storchaka2015-11-041-0/+2
* Issue #25395: Fixed crash when highly nested OrderedDict structures wereSerhiy Storchaka2015-11-011-3/+14
* Issue #25410: C implementation of OrderedDict now uses type(self) instead ofSerhiy Storchaka2015-10-221-31/+14
* Issue #25410: Fixed a memory leak in OrderedDict in the case when key's hashSerhiy Storchaka2015-10-201-1/+1