Преглед на файлове

Fix dictionary merging.

Stefano Cossu преди 2 години
родител
ревизия
d390f6159e
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4 1
      transliterator/tables/__init__.py

+ 4 - 1
transliterator/tables/__init__.py

@@ -24,7 +24,7 @@ TABLE_DIR = path.join(path.dirname(path.realpath(__file__)), "data")
 logger = logging.getLogger(__name__)
 
 
-class Token:
+class Token(str):
     """
     Token class: minimal unit of text parsing.
 
@@ -63,6 +63,9 @@ class Token:
         # If the root strings are different, perform a normal comparison.
         return self.content < other.content
 
+    def __hash__(self):
+        return hash(self.content)
+
 
 @cache
 def list_tables():