diff options
author | Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com> | 2017-12-06 16:39:33 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2017-12-06 16:39:33 (GMT) |
commit | 1b4587a2462fc05a14be87123083322103a1f55b (patch) | |
tree | c89b0a1f6455ad4fbb7daed04576ff450cd5941f /Doc/library/email.generator.rst | |
parent | 6bf992a1ac6f3f4d0f83ead9c6403a76afdbe6eb (diff) | |
download | cpython-1b4587a2462fc05a14be87123083322103a1f55b.zip cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.gz cpython-1b4587a2462fc05a14be87123083322103a1f55b.tar.bz2 |
bpo-25910: Fixes redirection from http to https (#4674)
Diffstat (limited to 'Doc/library/email.generator.rst')
-rw-r--r-- | Doc/library/email.generator.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/email.generator.rst b/Doc/library/email.generator.rst index 1e64e10..cc8e822 100644 --- a/Doc/library/email.generator.rst +++ b/Doc/library/email.generator.rst @@ -53,7 +53,7 @@ over channels that are not "8 bit clean". :data:`~email.policy.compat32` policy and ``False`` for all others). *mangle_from_* is intended for use when messages are stored in unix mbox format (see :mod:`mailbox` and `WHY THE CONTENT-LENGTH FORMAT IS BAD - <http://www.jwz.org/doc/content-length.html>`_). + <https://www.jwz.org/doc/content-length.html>`_). If *maxheaderlen* is not ``None``, refold any header lines that are longer than *maxheaderlen*, or if ``0``, do not rewrap any headers. If @@ -154,7 +154,7 @@ to be using :class:`BytesGenerator`, and not :class:`Generator`. :data:`~email.policy.compat32` policy and ``False`` for all others). *mangle_from_* is intended for use when messages are stored in unix mbox format (see :mod:`mailbox` and `WHY THE CONTENT-LENGTH FORMAT IS BAD - <http://www.jwz.org/doc/content-length.html>`_). + <https://www.jwz.org/doc/content-length.html>`_). If *maxheaderlen* is not ``None``, refold any header lines that are longer than *maxheaderlen*, or if ``0``, do not rewrap any headers. If |