bidict/tests
jab 1e34ae0a24 Use ItemsView in _bidict_and_mapping_from_items when not same_items for portability.
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
2019-04-14 17:16:15 -04:00
..
hypothesis Use ItemsView in _bidict_and_mapping_from_items when not same_items for portability. 2019-04-14 17:16:15 -04:00
test_benchmark.py happy 2019 2019-01-01 13:51:46 -05:00
test_bidict.txt happy 2019 2019-01-01 13:51:46 -05:00
test_class_relationships.py Rename .inv to .inverse and add an alias for .inv. 2019-02-13 19:50:22 -05:00
test_metadata.py happy 2019 2019-01-01 13:51:46 -05:00
test_orderedbidict.txt happy 2019 2019-01-01 13:51:46 -05:00