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)
commit1bc63aa79baaf35ab62b6462a96c7172fb6d3ba4
treeaa5d082a04c980b404c6e9f52ad34f093434fe8c
parent0c80ffc6c6b1df42655f9bcec9fb3b8666b2e6ca
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