UI/SymbolsWidget.py

branch
Py2 comp.
changeset 2538
b2642e7a4c18
parent 2526
a91cba8291b9
child 2600
a3feb717c3f0
equal deleted inserted replaced
2533:8fb5922867f2 2538:b2642e7a4c18
8 """ 8 """
9 9
10 from __future__ import unicode_literals # __IGNORE_WARNING__ 10 from __future__ import unicode_literals # __IGNORE_WARNING__
11 11
12 import unicodedata 12 import unicodedata
13 try: # Py3 13 try: # Py3
14 import html.entities as html_entities 14 import html.entities as html_entities
15 except (ImportError): 15 except (ImportError):
16 chr = unichr 16 chr = unichr
17 import htmlentitydefs as html_entities # __IGNORE_WARNING__ 17 import htmlentitydefs as html_entities # __IGNORE_WARNING__
18 18

eric ide

mercurial