##// END OF EJS Templates
tests: fix sortdict doctest with Python 3.12...
tests: fix sortdict doctest with Python 3.12 The output of OrderedDict changed to use plain dict syntax: $ python3.11 -c "import collections;print(collections.OrderedDict([('a', 0), ('b', 1)]))" OrderedDict([('a', 0), ('b', 1)]) $ python3.12 -c "import collections;print(collections.OrderedDict([('a', 0), ('b', 1)]))" OrderedDict({'a': 0, 'b': 1})

File last commit:

r36625:c6061cad default
r51646:a2df7485 stable
Show More
__init__.py
0 lines | 0 B | text/x-python | PythonLexer