Searched refs:htmlentitydefs (Results 1 – 14 of 14) sorted by relevance
90 Module :mod:`htmlentitydefs`157 :mod:`htmlentitydefs` --- Definitions of HTML general entities160 .. module:: htmlentitydefs166 The :mod:`htmlentitydefs` module has been renamed to :mod:`html.entities` in170 **Source code:** :source:`Lib/htmlentitydefs.py`
159 All entity references from :mod:`htmlentitydefs` are now replaced in the252 from htmlentitydefs import name2codepoint
49 from html import entities as htmlentitydefs unknown51 import htmlentitydefs357 entity = htmlentitydefs.codepoint2name.get(code)
50 import htmlentitydefs
2 import sys, codecs, htmlentitydefs, unicodedata108 l.append(u"&%s;" % htmlentitydefs.codepoint2name[ord(c)])
80 from htmlentitydefs import codepoint2name
465 import htmlentitydefs468 for k, v in htmlentitydefs.name2codepoint.iteritems():
32 from htmlentitydefs import entitydefs
42 from htmlentitydefs import codepoint2name, name2codepoint
127 htmlentitydefs
1900 htmlentitydefs Proposed entity definitions for HTML.
4384 - htmlentitydefs has two new dictionaries: name2codepoint maps
2317 import htmlentitydefs2318 if name in htmlentitydefs.entitydefs:2319 self.handle_data(htmlentitydefs.entitydefs[name])
93 from htmlentitydefs import name2codepoint