Lines Matching refs:Translator
47 class Translator:
77 if Translator._HTML_TAG_RE is None:
78 Translator._HTML_TAG_RE = re.compile(Translator._HTML_TAG_REGEX, re.MULTILINE | re.DOTALL)
79 if Translator._HTML_CMT_RE is None:
80 Translator._HTML_CMT_RE = re.compile(Translator._HTML_CMT_REGEX, re.MULTILINE | re.DOTALL)
81 if Translator._CS_TAG_RE is None:
82 Translator._CS_TAG_RE = re.compile(Translator._CS_TAG_REGEX, re.MULTILINE | re.DOTALL)
194 m = Translator._CS_TAG_RE.search(data, i)
580 t = Translator()