summaryrefslogtreecommitdiffstats
path: root/Objects/odictobject.c
Commit message (Collapse)AuthorAgeFilesLines
* Backport docstring improvements to OrderedDict. (GH-3470)Henk-Jaap Wagenaar2017-09-111-4/+6
|
* [3.6] bpo-30662: fixed OrderedDict.__init__ docstring re PEP 468 (GH-2179) ↵Mariatta2017-09-061-2/+1
| | | | | | | | | | | | | | (GH-3370) * fixed OrderedDict.__init__ docstring re PEP 468 * tightened comment and mirrored to C impl * added space after period per marco-buttu * preserved substituted for stable * drop references to Python 3.6 and PEP 468 (cherry picked from commit faa57cbe7074b26807cd7ed89a7b173b5cbf3086)
* 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
| | | | | | | | | | | | * Indent versionchanged at method level, not class level * Mark up ``--help`` to avoid generating an en dash * Use forward slash in Unix command line with a dollar sign ($) prompt
* | 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
|\ \ | |/ | | | | subclasses of accelerated OrderedDict.
| * Issue #27275: Fixed implementation of pop() and popitem() methods inSerhiy Storchaka2016-10-251-22/+7
| | | | | | | | subclasses of accelerated OrderedDict.
* | 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-081-5/+8
| | | | | | | | | | | | | | | | | | | | | | | | Issue #27350: `dict` implementation is changed like PyPy. It is more compact and preserves insertion order. _PyDict_Dummy() function has been removed. Disable test_gdb: python-gdb.py is not updated yet to the new structure of compact dictionaries (issue #28023). Patch written by INADA Naoki.
* | 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
| | | | | | | | Fix a "gcc -pendatic" warning.
* | Issue #25949: __dict__ for an OrderedDict instance is now created only whenSerhiy Storchaka2016-02-081-16/+7
|/ | | | needed.
* 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
| | | | | This allows sys.getsize() to work correctly with their subclasses with __slots__ defined.
* Issue #25462: The hash of the key now is calculated only once in mostSerhiy Storchaka2015-11-131-35/+83
| | | | operations in C implementation of OrderedDict.
* Issue #25410: Made testing that od_fast_nodes and dk_entries are in sync moreSerhiy Storchaka2015-11-061-4/+8
| | | | reliable.
* Issue #24726: Revert setting the value on the dict ifSerhiy Storchaka2015-11-061-1/+7
| | | | _odict_add_new_node() fails.
* 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
| | | | was mutated by direct calls of dict methods.
* Issue #25449: Iterating OrderedDict with keys with unstable hash now raisesSerhiy Storchaka2015-11-041-0/+2
| | | | | | KeyError in C implementations as well as in Python implementation. Added tests for OrderedDict subclasses.
* Issue #25395: Fixed crash when highly nested OrderedDict structures wereSerhiy Storchaka2015-11-011-3/+14
| | | | garbage collected.
* Issue #25410: C implementation of OrderedDict now uses type(self) instead ofSerhiy Storchaka2015-10-221-31/+14
| | | | self.__class__ in __repr__() and __reduce__() for simplicity and reliability.
* Issue #25410: Fixed a memory leak in OrderedDict in the case when key's hashSerhiy Storchaka2015-10-201-1/+1
| | | | calculation fails.
* Issue #25410: Cleaned up and fixed minor bugs in C implementation of ↵Serhiy Storchaka2015-10-181-158/+72
| | | | OrderedDict.
* Issue #25406: Fixed a bug in C implementation of OrderedDict.move_to_end()Serhiy Storchaka2015-10-141-21/+10
| | | | | that caused segmentation fault or hang in iterating after moving several items to the start of ordered dict.
* odictobject.c: fix compiler warningVictor Stinner2015-09-181-1/+1
| | | | | PyObject_Length() returns a P_ssize_t, not an int. Use a Py_ssize_t to avoid overflow.
* Issue #24992: Fix error handling and a race condition (related to garbageVictor Stinner2015-09-031-18/+22
| | | | | | collection) in collections.OrderedDict constructor. Patch reviewed by Serhiy Storchaka.
* Issue #24667: Resize odict in all cases that the underlying dict resizes.Eric Snow2015-08-071-7/+10
|
* repair my irrational excuberanceBenjamin Peterson2015-06-071-54/+57
|
* remove unnecessary braces and indentationBenjamin Peterson2015-06-071-58/+57
|
* fix refleak when keys() failsBenjamin Peterson2015-06-041-2/+6
|
* Issue #24369: Defend against key-changes during iteration.Eric Snow2015-06-041-13/+19
|
* Issue #24377: Fix a ref leak in OrderedDict.__repr__.Eric Snow2015-06-031-1/+1
|
* Issue #24362: Simplify the C OrderedDict fast nodes resize logic.Eric Snow2015-06-031-34/+40
|
* Issue #24368: Support keyword arguments in OrderedDict methods.Eric Snow2015-06-031-23/+49
|
* Issue #24359: Check for changed OrderedDict size during iteration.Eric Snow2015-06-021-0/+10
|
* Issue #24348: Drop superfluous increfs/decrefs.Eric Snow2015-06-021-33/+13
|
* Issue #24347: Set KeyError if PyDict_GetItemWithError returns NULL.Eric Snow2015-06-021-15/+47
|
* Issue #16991: Fix a few leaks and other memory-related concerns in OrderedDict.Eric Snow2015-05-301-12/+14
|
* Issue #16991: Do not return None from OrderedDict.__reversed__.Eric Snow2015-05-301-3/+0
|
* Issue #16991: Properly handle return values in several places.Eric Snow2015-05-301-16/+43
|
* Issue #16991: Add a C implementation of collections.OrderedDict.Eric Snow2015-05-301-0/+2394