Chris Angelico wrote:
> Alternatively, you may find it simpler and easier to use a non-nested
> dictionary.
>
> persist["window/downarr"] = blah blah
Also keep in mind that you can use tuples as keys:
mydict['a', 'b', 'b', 'a'] = fred
--
Greg