From: Jeremy Stanley Date: Tue, 25 Sep 2012 16:32:32 +0000 (+0000) Subject: Work around lack of dict_keys index in catch-all X-Git-Tag: 0.0.1~274 X-Git-Url: https://mudpy.org/gitweb?a=commitdiff_plain;h=4eb4a44bb63c666d6b4cbb6816d3082449dcdccb;hp=4eb4a44bb63c666d6b4cbb6816d3082449dcdccb;p=mudpy.git Work around lack of dict_keys index in catch-all * lib/mudpy/misc.py: In Python 3000, dict.keys() returns a dict_keys type which is not indexed, so work around it by converting to a list anywhere we attempt to sort keys or access a key by ordered index. ---