summaryrefslogtreecommitdiff
path: root/tests/basics/ordereddict1.py
AgeCommit message (Collapse)Author
2023-06-08tests: Replace umodule with module everywhere.Jim Mussared
This work was funded through GitHub Sponsors. Signed-off-by: Jim Mussared <jim.mussared@gmail.com>
2020-04-27py/objdict: Fix popitem for ordered dicts.Jim Mussared
The popitem method wasn't implemented for ordered dicts and would result in an invalid state. Fixes issue #5956.
2017-06-10tests/basics: Convert "sys.exit()" to "raise SystemExit".Paul Sokolovsky
2017-03-03tests/basics: Add further tests for OrderedDict.Damien George
2016-05-02tests: Update for _io/_collections module having been renamed.Paul Sokolovsky
2015-03-20tests: Add basic test for OrderedDict.Paul Sokolovsky
Mostly to have coverage of newly added code in map.c.