summaryrefslogtreecommitdiffstats
path: root/Lib/email/charset.py
Commit message (Collapse)AuthorAgeFilesLines
* #18437: fix comment typo.R David Murray2013-07-131-1/+1
|
* #1379416: encode charset name to ascii to avoid unicode promotion of outputR. David Murray2010-12-271-1/+1
|
* #4487: have Charset check with codecs for possible aliases.R. David Murray2010-06-041-1/+7
| | | | | | | | | Previously, unexpected results occurred when email was passed, for example, 'utf8' as a charset name, since email would accept it but would *not* use the 'utf-8' codec for it, even though Python itself recognises that as an alias for utf-8. Now Charset checks with codecs for aliases as well as its own internal table. Issue 8898 has been opened to change this further in py3k so that all aliasing is routed through the codecs module.
* Remove Barry's love of deprecated syntax to silence warnings in the emailBrett Cannon2008-08-031-2/+2
| | | | package, when run under -3, about using <>.
* Patch #1634778: add missing encoding aliases for iso8859_15 andGeorg Brandl2007-01-271-0/+3
| | | | iso8859_16.
* Merge email package 4.0 from the sandbox, including documentation, test cases,Barry Warsaw2006-03-181-0/+388
and NEWS updates.