inveniosoftware / inveniosoftware/dictdiffer

Ignore list order

Open
#73 13 comments 3 reactions 0 assignees View on GitHub
Type: enhancement
Dominant language
Python
Stars
849
Forks
99
PR merge metrics
No merged PRs in 30d

Description

It will be nice to have `ignore_order` option:

```
from dictdiffer import diff

first = {'a': [1,2]}
second = {'a': [2,1]}

result = diff(first, second, ignore_order=True)
assert list(result) == []
```

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.