Work around lack of dict_keys index in data loader
authorJeremy Stanley <fungi@yuggoth.org>
Wed, 1 Aug 2012 11:28:59 +0000 (11:28 +0000)
committerJeremy Stanley <fungi@yuggoth.org>
Wed, 1 Aug 2012 11:28:59 +0000 (11:28 +0000)
commite081b5e66fd88d613a9debc0f4e95feb18041ccf
tree030bfa280c7a1f6642b032c8f70ae955ba2619cc
parent4eb697b7def1424d43ea6b22461afed70dfe661b
Work around lack of dict_keys index in data loader

* lib/mudpy/data.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 access a key by ordered index.
lib/mudpy/data.py