##// 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})
Mads Kiilerich -
r51646:a2df7485 stable
Show More
Name Size Modified Last Commit Author
/ mercurial / testing
__init__.py Loading ...
revlog.py Loading ...
storage.py Loading ...