summaryrefslogtreecommitdiffstats
path: root/Lib/email/mime/text.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #27445: Merge from 3.5Berker Peksag2016-09-081-3/+1
|\
| * Issue #27445: Don't pass str(_charset) to MIMEText.set_payload()Berker Peksag2016-09-081-3/+1
| | | | | | | | Patch by Claude Paroz.
* | #27331: add policy keyword argument to all MIME subclasses.R David Murray2016-09-071-2/+2
|/ | | | Patch by Berker Peksag.
* Issue #16324: _charset parameter of MIMEText now also accepts ↵Berker Peksag2014-09-261-0/+3
| | | | | | email.charset.Charset instances. Initial patch by Claude Paroz.
* Issue #20976: pyflakes: Remove unused importsVictor Stinner2014-03-201-1/+0
|
* Issue #17047: remove doubled words added in 3.3Terry Jan Reedy2013-03-111-1/+1
| | | | as reported by Serhiy Storchaka and Matthew Barnett.
* #14380: Make actual default match docs, fix __init__ order.R David Murray2012-03-231-7/+9
| | | | | | | | Éric pointed out that given that the default was documented as None, someone would reasonably pass that to get the default behavior. In fixing the code to use None, I noticed that the change to _charset was being done after it had already been passed to MIMENonMultipart. The change to the test verifies that the order is now correct.
* #14380: Have MIMEText defaults to utf-8 when passed non-ASCII unicodeR David Murray2012-03-231-0/+10
| | | | | | | Previously it would just accept the unicode, which would wind up as unicode in the transfer-encoded message object, which is just wrong. Patch by Jeff Knupp.
* Copying the email package back, despite its failings.Guido van Rossum2007-08-301-0/+30
|
* Remove the email package for now.Guido van Rossum2007-08-251-30/+0
| | | | | | Once Barry and the email-sig have a working new version we'll add it back. If it doesn't make the 3.0a deadline (release August 31), too bad.
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-0/+30
number of tests, all because of the codecs/_multibytecodecs issue described here (it's not a Py3K issue, just something Py3K discovers): http://mail.python.org/pipermail/python-dev/2006-April/064051.html Hye-Shik Chang promised to look for a fix, so no need to fix it here. The tests that are expected to break are: test_codecencodings_cn test_codecencodings_hk test_codecencodings_jp test_codecencodings_kr test_codecencodings_tw test_codecs test_multibytecodec This merge fixes an actual test failure (test_weakref) in this branch, though, so I believe merging is the right thing to do anyway.