Switch the selftest dialogue to a normal dict
authorJeremy Stanley <fungi@yuggoth.org>
Sun, 1 Nov 2020 16:52:07 +0000 (16:52 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sun, 1 Nov 2020 16:54:51 +0000 (16:54 +0000)
Starting with Python 3.6, dicts are implicitly ordered (albeit as a
side effect in 3.6, 3.7 is consistent with 3.6 and guarantees
ordering in interpreter versions from that point on). We no longer
need to use collections.OrderedDict for the selftest dialogue as a
result, so use a regular dict there now to simplify it.


No differences found