From 347494ec6d58e80b2dcd152530f2dd779690d70d Mon Sep 17 00:00:00 2001 From: Mikhail Korobov Date: Tue, 31 Jul 2012 04:35:49 +0600 Subject: [PATCH] datrie.new was deprecated and will be removed soon, it shouldn't be in the readme. --- README.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.rst b/README.rst index b421b92..6ed89ec 100644 --- a/README.rst +++ b/README.rst @@ -118,8 +118,7 @@ Trie and BaseTrie There are two Trie classes in datrie package: ``datrie.Trie`` and ``datrie.BaseTrie``. ``datrie.BaseTrie`` is slightly faster and uses less memory but it can store only integer numbers 0 <= x <= 2147483647. -``datrie.Trie`` is a bit slower but can store any Python object as a value; -it is the trie created by ``datrie.new`` by default. +``datrie.Trie`` is a bit slower but can store any Python object as a value. If you don't need values or integer values are OK then use ``datrie.BaseTrie``::