Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix capitalization of Unix in documentation (#96913) | Will Hawkins | 2022-10-01 | 1 | -2/+2 |
| | |||||
* | Fix typos in Doc/library/email.generator.rst documentation (GH-13539) | Nick Sung | 2019-05-24 | 1 | -1/+1 |
| | |||||
* | bpo-36766: Typos in docs and code comments (GH-13116) | penguindustin | 2019-05-06 | 1 | -1/+1 |
| | |||||
* | bpo-31887: Adds documentations for special multipart/signed handling (GH-4268) | Saptak Sengupta | 2018-11-04 | 1 | -0/+4 |
| | | | | | | This pull request adds some information about the special multipart/signed handling to clear about disabling header folding. https://bugs.python.org/issue31887 | ||||
* | Spelling fixes to docs, docstrings, and comments (GH-6374) | Ville Skyttä | 2018-04-20 | 1 | -1/+1 |
| | |||||
* | bpo-25910: Fixes redirection from http to https (#4674) | Sanyam Khurana | 2017-12-06 | 1 | -2/+2 |
| | |||||
* | Fix typos in multiple `.rst` files (#1668) | delirious-lettuce | 2017-05-19 | 1 | -2/+2 |
| | |||||
* | Add policy keyword to email.generator.DecodedGenerator. | R David Murray | 2016-09-08 | 1 | -3/+3 |
| | |||||
* | #24277: The new email API is no longer provisional. | R David Murray | 2016-09-08 | 1 | -168/+208 |
| | | | | | | | 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 #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -0/+3 |
| | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | ||||
* | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 1 | -2/+2 |
| | | | | to SilentGhost for the patch. | ||||
* | #21300: Clean up the docs for the email "policy" arguments. | R David Murray | 2014-05-07 | 1 | -4/+6 |
| | |||||
* | Update pydoc topics and fix new suspicious markup. | Georg Brandl | 2012-05-30 | 1 | -1/+1 |
| | |||||
* | #11785: fix the :mod: references in email package submodule titles. | R David Murray | 2012-05-27 | 1 | -2/+2 |
| | | | | Also adds the TOC entry for headerregistry. | ||||
* | #14731: refactor email policy framework. | R David Murray | 2012-05-25 | 1 | -19/+19 |
| | | | | | | | | | | | | | | | | | This patch primarily does two things: (1) it adds some internal-interface methods to Policy that allow for Policy to control the parsing and folding of headers in such a way that we can construct a backward compatibility policy that is 100% compatible with the 3.2 API, while allowing a new policy to implement the email6 API. (2) it adds that backward compatibility policy and refactors the test suite so that the only differences between the 3.2 test_email.py file and the 3.3 test_email.py file is some small changes in test framework and the addition of tests for bugs fixed that apply to the 3.2 API. There are some additional teaks, such as moving just the code needed for the compatibility policy into _policybase, so that the library code can import only _policybase. That way the new code that will be added for email6 will only get imported when a non-compatibility policy is imported. | ||||
* | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-21 | 1 | -1/+1 |
|\ | |||||
| * | #14804: Remove [] around optional arguments with default values | Hynek Schlawack | 2012-05-21 | 1 | -1/+1 |
| | | |||||
* | | merge #1440472: reflow | R David Murray | 2012-05-16 | 1 | -4/+3 |
|\ \ | |/ | |||||
| * | #1440472: reflow | R David Murray | 2012-05-16 | 1 | -4/+3 |
| | | |||||
* | | merge #1440472: Explain that email parser/generator isn't *quite* "idempotent" | R David Murray | 2012-05-16 | 1 | -1/+11 |
|\ \ | |/ | |||||
| * | #1440472: Explain that email parser/generator isn't *quite* "idempotent" | R David Murray | 2012-05-16 | 1 | -1/+11 |
| | | |||||
* | | #11731: simplify/enhance parser/generator API by introducing policy objects. | R David Murray | 2011-04-18 | 1 | -18/+37 |
|/ | | | | | | | | This new interface will also allow for future planned enhancements in control over the parser/generator without requiring any additional complexity in the parser/generator API. Patch reviewed by Éric Araujo and Barry Warsaw. | ||||
* | #10686: recode non-ASCII headers to 'unknown-8bit' instead of ?s. | R. David Murray | 2011-01-07 | 1 | -2/+2 |
| | | | | | | This applies only when generating strings from non-RFC compliant binary input; it makes the existing recoding behavior more consistent (ie: now no data is lost when recoding). | ||||
* | Fix style. | Georg Brandl | 2010-10-24 | 1 | -2/+2 |
| | |||||
* | #1349106: add linesep argument to generator.flatten and header.encode. | R. David Murray | 2010-10-23 | 1 | -11/+73 |
| | |||||
* | Correct signature of BytesGenerator in docs. | R. David Murray | 2010-10-19 | 1 | -1/+1 |
| | |||||
* | Fixing some sphinx inline directives - detected using ``make check``. | Senthil Kumaran | 2010-10-15 | 1 | -1/+1 |
| | |||||
* | #4661: add bytes parsing and generation to email (email version bump to 5.1.0) | R. David Murray | 2010-10-08 | 1 | -3/+32 |
| | | | | | | | | The work on this is not 100% complete, but everything is present to allow real-world testing of the code. The only remaining major todo item is to (hopefully!) enhance the handling of non-ASCII bytes in headers converted to unicode by RFC2047 encoding them rather than replacing them with '?'s. | ||||
* | Add cross-references to the glossary entry for file objects. | Antoine Pitrou | 2010-09-15 | 1 | -3/+3 |
| | |||||
* | Merged revisions 77412 via svnmerge from | R. David Murray | 2010-01-10 | 1 | -1/+4 |
| | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r77412 | r.david.murray | 2010-01-10 12:41:28 -0500 (Sun, 10 Jan 2010) | 3 lines Issue #7119: document that a program-generated Message object tree may be mutated when serialized. ........ | ||||
* | Use new optional argument style in email docs. | Georg Brandl | 2009-05-17 | 1 | -3/+3 |
| | |||||
* | Merged revisions 71572 via svnmerge from | Georg Brandl | 2009-04-27 | 1 | -4/+4 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r71572 | georg.brandl | 2009-04-13 15:13:25 +0200 (Mo, 13 Apr 2009) | 1 line #5745: more linking for identifiers in email docs. ........ | ||||
* | Merged revisions 62490 via svnmerge from | Benjamin Peterson | 2008-04-25 | 1 | -20/+19 |
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r62490 | benjamin.peterson | 2008-04-24 20:29:10 -0500 (Thu, 24 Apr 2008) | 2 lines reformat some documentation of classes so methods and attributes are under the class directive ........ | ||||
* | Convert all print statements in the docs. | Georg Brandl | 2007-09-04 | 1 | -2/+2 |
| | |||||
* | Get rid of the remaining versionadded/versionchanged directives. | Georg Brandl | 2007-09-01 | 1 | -10/+0 |
| | |||||
* | Move the 3k reST doc tree in place. | Georg Brandl | 2007-08-15 | 1 | -0/+123 |