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?p=mudpy.git;a=commitdiff_plain;h=94eb9e7a09b1edf0d4c600c4f3c1cc4e709af1c9;hp=94eb9e7a09b1edf0d4c600c4f3c1cc4e709af1c9 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. ---