mirror of https://github.com/jab/bidict.git
![]() e.g. on PyPy: >>>> b = bidict({1: 2, 3: 4}) >>>> b.items() [(1, 2), (3, 4)] >>>> m = {3: 4, 1: 2} >>>> m.items() [(3, 4), (1, 2)] >>>> b.items() == m.items() False >>>> ItemsView(b) == ItemsView(m) True |
||
---|---|---|
.. | ||
hypothesis | ||
test_benchmark.py | ||
test_bidict.txt | ||
test_class_relationships.py | ||
test_metadata.py | ||
test_orderedbidict.txt |