From: Jeremy Stanley Date: Sun, 1 Nov 2020 16:52:07 +0000 (+0000) Subject: Switch the selftest dialogue to a normal dict X-Git-Tag: 0.4.0~17 X-Git-Url: https://mudpy.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=94eb9e7a09b1edf0d4c600c4f3c1cc4e709af1c9;hp=94eb9e7a09b1edf0d4c600c4f3c1cc4e709af1c9;p=mudpy.git Switch the selftest dialogue to a normal dict 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. ---