aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/future/html/entities.py
blob: 33e6e4c67ffd09a9baa23727ee12461d775e9cf8 (plain) (blame)
1
2
3
4
5
6
7
from __future__ import absolute_import 
from future.utils import PY3 
 
if PY3: 
    from html.entities import * 
else: 
    from future.moves.html.entities import *