def test_search_return_list_globbed(): tdict = { "a": { "b": [ 0, 1, 2] } } res = dpath.util.search(tdict, '/a/b/[02]') print res assert(isinstance(res['a']['b ...
There are two test failures with Python 3.10. With Python 3.9 everything seems fine. Could you have a look? ===== FAILURES ...