Kaynağa Gözat

Fix dictionary merging.

Stefano Cossu 2 yıl önce
ebeveyn
işleme
d390f6159e
1 değiştirilmiş dosya ile 4 ekleme ve 1 silme
  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():