golden hour
/usr/lib/python3.6/site-packages/pip/_vendor/html5lib/_trie
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
289 B
Del
OK
__pycache__
-
Del
OK
_base.py
979 B
Del
OK
datrie.py
1.15 KB
Del
OK
py.py
1.73 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