Closed b4hand closed 10 years ago
Thanks! This makes sense.
Travis build failure for Python 3.2 was strange (it failed to install Cython); I've restarted the build, it seems to work now (failing test_iterkeys
test).
Sorry, I'm still on a Python 2.7 environment locally, so I'm still getting used to Python 3.
By the way, I recommend you merge this one before #8, and then I can rebase #8 to include this change as it's a bug that I discovered along the way.
Thanks! Could you please also add yourself to README under "Authors and Contributors" section? I should have asked that earlier..
This fixes a bug where the result of
list(trie.iterkeys())
does not equaltrie.keys()
because iterkeys was not getting overridden inTrie
.