瀏覽代碼

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():