summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-08 17:37:50 (GMT)
committerGitHub <noreply@github.com>2024-06-08 17:37:50 (GMT)
commitf6689d91b2dc2a9b5f94334ff30abf56bf016ff2 (patch)
tree40dcae9119ac5cdcc198a9c603be894967061914 /Doc
parent4bca4e58af2e8cf6ce78151d3ae73bd254a4e64c (diff)
downloadcpython-f6689d91b2dc2a9b5f94334ff30abf56bf016ff2.zip
cpython-f6689d91b2dc2a9b5f94334ff30abf56bf016ff2.tar.gz
cpython-f6689d91b2dc2a9b5f94334ff30abf56bf016ff2.tar.bz2
[3.13] gh-120276: Fix incorrect email.header.Header maxlinelen default (GH-120277) (GH-120279)
(cherry picked from commit 7c016deae62308dd1b4e2767fc6abf04857c7843) Co-authored-by: Clinton <pygeek@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/email.header.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/email.header.rst b/Doc/library/email.header.rst
index 6e230d5..219fad0 100644
--- a/Doc/library/email.header.rst
+++ b/Doc/library/email.header.rst
@@ -77,7 +77,7 @@ Here is the :class:`Header` class description:
The maximum line length can be specified explicitly via *maxlinelen*. For
splitting the first line to a shorter value (to account for the field header
which isn't included in *s*, e.g. :mailheader:`Subject`) pass in the name of the
- field in *header_name*. The default *maxlinelen* is 76, and the default value
+ field in *header_name*. The default *maxlinelen* is 78, and the default value
for *header_name* is ``None``, meaning it is not taken into account for the
first line of a long, split header.