Lines Matching refs:Charset
21 Charset = _charset.Charset
31 USASCII = Charset('us-ascii')
32 UTF8 = Charset('utf-8')
67 parts of the header. Charset is None for non-encoded parts of the header,
175 if charset is not None and not isinstance(charset, Charset):
176 charset = Charset(charset)
215 elif not isinstance(charset, Charset):
216 charset = Charset(charset)
272 Optional charset, if given, should be a Charset instance or the name
273 of a character set (which will be converted to a Charset instance). A
292 elif not isinstance(charset, Charset):
293 charset = Charset(charset)