golden hour
/opt/alt/python37/lib/python3.7/site-packages/html5lib/_trie
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
289 B
Del
OK
__pycache__
-
Del
OK
_base.py
930 B
Del
OK
datrie.py
1.14 KB
Del
OK
py.py
1.72 KB
Del
OK
Edit: __init__.py
from __future__ import absolute_import, division, unicode_literals from .py import Trie as PyTrie Trie = PyTrie # pylint:disable=wrong-import-position try: from .datrie import Trie as DATrie except ImportError: pass else: Trie = DATrie # pylint:enable=wrong-import-position
Save