* New ``Trie`` methods: ``__getitem__``, ``get``, ``items``, ``iteritems``. ``trie[u'key']`` is now the same as ``trie.key_id(u'key')``. * small optimization for ``BytesTrie.get``. * wrapper is rebuilt with Cython 0.20.1.
0.5.3
------------------
* small ``Trie.restore_key`` optimization (it should work 5-15% faster)
0.5.2
------------------
* fix ``Trie.restore_key`` method - it was reading past declared string length; * rebuild wrapper with Cython 0.20.
* ``BytesTrie.iterkeys``, ``BytesTrie.iteritems``, ``RecordTrie.iterkeys`` and ``RecordTrie.iteritems`` methods; * wrapper is rebuilt with Cython 0.19; * ``value_separator`` parameter for ``BytesTrie`` and ``RecordTrie``.
0.4
----------------
* improved trie building: ``weights`` optional parameter; * improved trie building: unnecessary input sorting is removed; * wrapper is rebuilt with Cython 0.18; * bundled marisa-trie C++ library is updated to svn r133.