aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/future/moves/html/entities.py
blob: 56a886091120f0c6a03eca5e90340121c95637f7 (about) (plain)
1
2
3
4
5
6
7
8
from __future__ import absolute_import
from future.utils import PY3

if PY3:
    from html.entities import *
else:
    __future_module__ = True
    from htmlentitydefs import *