summaryrefslogtreecommitdiffstats
path: root/Doc/library/email.contentmanager.rst
Commit message (Collapse)AuthorAgeFilesLines
* bpo-30820: Remove incorrect docs for email.contentmanager.raw_data_manager ↵Zackery Spytz2018-06-111-9/+0
| | | | | | (#7631) The docs claimed that a list of EmailMessage objects could be passed to set_content(), but this was never implemented.
* Fix typos in multiple `.rst` files (#1668)delirious-lettuce2017-05-191-2/+2
|
* 24277: Make it clearer that the new modules are not provisional.R David Murray2016-09-081-3/+7
| | | | | Also make it clear on the contents page what chapters are about the legacy API.
* #24277: The new email API is no longer provisional.R David Murray2016-09-081-266/+32
| | | | | | | This is a wholesale reorganization and editing of the email documentation to make the new API the standard one, and the old API the 'legacy' one. The default is still the compat32 policy, for backward compatibility. We will change that eventually.
* Issue #27895: Spelling fixes (Contributed by Ville Skyttä).Raymond Hettinger2016-08-301-1/+1
|
* Minor spelling fixesMartin Panter2016-08-201-1/+1
|
* Issue #22558: Add remaining doc links to source code for Python-coded modules.Terry Jan Reedy2016-06-111-2/+5
| | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi.
* Issue #23943: Fix typos. Patch by Piotr Kasprzyk.Berker Peksag2015-04-141-1/+1
|
* Revert #22251Berker Peksag2014-09-271-3/+1
|
* Issue #22251: Fix ReST markup to avoid errors building docs.Berker Peksag2014-09-271-1/+3
|
* #21091: make is_attachment a method.R David Murray2014-09-201-2/+6
| | | | | | Since EmailMessage is a provisional API we can fix API bugs in a maintenance release, but I used a trick suggested by Serhiy to maintain backward compatibility with 3.4.0/1.
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-161-8/+11
|
* Fix suspicious markup in the docs.Georg Brandl2013-11-241-2/+2
|
* #18891: Complete new provisional email API.R David Murray2013-10-171-0/+427
This adds EmailMessage and, MIMEPart subclasses of Message with new API methods, and a ContentManager class used by the new methods. Also a new policy setting, content_manager. Patch was reviewed by Stephen J. Turnbull and Serhiy Storchaka, and reflects their feedback. I will ideally add some examples of using the new API to the documentation before the final release.