PythonExtra/tests/basics/ordereddict_eq.py.exp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
289 B
Plaintext
Raw Permalink Normal View History

OrderedDict({'a': 1, 'b': 2})
OrderedDict({'a': 1, 'b': 2})
True
OrderedDict({'a': 1, 'b': 2})
OrderedDict({'b': 2, 'a': 1})
False
OrderedDict({'a': 1, 'b': 2})
OrderedDict({'a': 1, 'b': 2})
True
OrderedDict({'b': 2})
OrderedDict({'b': 2})
True
OrderedDict({})
OrderedDict({'a': 1})
False