Make selftest dialogue mutable
authorJeremy Stanley <fungi@yuggoth.org>
Sat, 3 Oct 2020 17:45:47 +0000 (17:45 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Sun, 4 Oct 2020 22:37:36 +0000 (22:37 +0000)
In order to support future selectivity of test sets, replace the
immutable tuple of all tests with a dict keyed by test object.
Iterate over a copy of it so that the original is not altered when
tests are eventually removed during runtime. For Python 3.5 and
earlier, use OrderedDict so that test order is explicitly preserved.


No differences found