Mercurial > hg
comparison hgext/amend.py @ 50753:a2df74853f8d stable
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})
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Tue, 27 Jun 2023 10:09:11 +0200 |
parents | e78a41686464 |
children | f4733654f144 |
comparison
equal
deleted
inserted
replaced
50752:faccec1edc2c | 50753:a2df74853f8d |
---|