Initial Commit
This commit is contained in:
12
lib/html5lib/trie/__init__.py
Normal file
12
lib/html5lib/trie/__init__.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from __future__ import absolute_import, division, unicode_literals
|
||||
|
||||
from .py import Trie as PyTrie
|
||||
|
||||
Trie = PyTrie
|
||||
|
||||
try:
|
||||
from .datrie import Trie as DATrie
|
||||
except ImportError:
|
||||
pass
|
||||
else:
|
||||
Trie = DATrie
|
Reference in New Issue
Block a user