summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ordered_dict.py
Commit message (Collapse)AuthorAgeFilesLines
* Add OrderedDict test for PEP 468 (guaranteed ordered of kwargs)Raymond Hettinger2017-01-081-0/+8
|
* Merge from 3.5.Serhiy Storchaka2016-10-301-59/+0
|\
| * Backed out changeset 9f7505019767 (issue #27275).Serhiy Storchaka2016-10-301-59/+0
| |
* | Issue #27275: Fixed implementation of pop() and popitem() methods inSerhiy Storchaka2016-10-251-0/+59
|\ \ | |/ | | | | subclasses of accelerated OrderedDict.
| * Issue #27275: Fixed implementation of pop() and popitem() methods inSerhiy Storchaka2016-10-251-0/+59
| | | | | | | | subclasses of accelerated OrderedDict.
* | Try to fix sizeof unit tests on dictVictor Stinner2016-09-101-1/+2
| | | | | | | | Issue #28056 and issue #26058.
* | Issue #27576: Fix call order in OrderedDict.__init__().Eric Snow2016-09-091-0/+13
| |
* | Add a new private version to the builtin dict typeVictor Stinner2016-09-081-1/+1
| | | | | | | | | | | | | | Issue #26058: Add a new private version to the builtin dict type, incremented at each dictionary creation and at each dictionary change. Implementation of the PEP 509.
* | Implement compact dictVictor Stinner2016-09-081-6/+27
| | | | | | | | | | | | | | | | | | | | | | | | 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 #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-0/+6
|\ \ | |/ | | | | | | | | Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator.
| * Issue #26494: Fixed crash on iterating exhausting iterators.Serhiy Storchaka2016-03-301-0/+6
| | | | | | | | | | | | Affected classes are generic sequence iterators, iterators of str, bytes, bytearray, list, tuple, set, frozenset, dict, OrderedDict, corresponding views and os.scandir() iterator.
* | Issue #25949: __dict__ for an OrderedDict instance is now created only whenSerhiy Storchaka2016-02-081-1/+3
| | | | | | | | needed.
* | Issue #25935: Garbage collector now breaks reference loops with OrderedDict.Serhiy Storchaka2016-01-191-0/+13
|\ \ | |/
| * Issue #25935: Garbage collector now breaks reference loops with OrderedDict.Serhiy Storchaka2016-01-191-0/+13
| |
* | Issue #25914: Fixed and simplified OrderedDict.__sizeof__.Serhiy Storchaka2015-12-221-0/+32
|\ \ | |/
| * Issue #25914: Fixed and simplified OrderedDict.__sizeof__.Serhiy Storchaka2015-12-221-0/+32
| |
* | Issue #25616: Tests for OrderedDict are extracted from test_collectionsSerhiy Storchaka2015-11-251-0/+8
|/ | | | into separate file test_ordered_dict.
* Issue #25616: Tests for OrderedDict are extracted from test_collectionsSerhiy Storchaka2015-11-251-17/+398
| | | | into separate file test_ordered_dict.
* Issue #25616: Tests for OrderedDict are extracted from test_collectionsSerhiy Storchaka2015-11-251-0/+302
into separate file test_ordered_dict.