소스 검색

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