summaryrefslogtreecommitdiffstats
path: root/Doc/library/email.header.rst
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2009-03-30 22:42:17 (GMT)
committerBarry Warsaw <barry@python.org>2009-03-30 22:42:17 (GMT)
commitdbf95a3643ddad5909d815463f53bebd534f30cf (patch)
treebacd844dbb075ce5e76b44f4a2184a2259416269 /Doc/library/email.header.rst
parent55acfc6c87522b3242449cd77a0bf4f1c6cf962b (diff)
downloadcpython-dbf95a3643ddad5909d815463f53bebd534f30cf.zip
cpython-dbf95a3643ddad5909d815463f53bebd534f30cf.tar.gz
cpython-dbf95a3643ddad5909d815463f53bebd534f30cf.tar.bz2
A fix for issue 1974, inspired by the patch from Andi Albrecht (aalbrecht),
though with some changes by me. This patch should not be back ported or forward ported. It's a bit too risky for 2.6 and 3.x does things fairly differently.
Diffstat (limited to 'Doc/library/email.header.rst')
-rw-r--r--Doc/library/email.header.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/email.header.rst b/Doc/library/email.header.rst
index 000d48e..e424dff 100644
--- a/Doc/library/email.header.rst
+++ b/Doc/library/email.header.rst
@@ -74,7 +74,8 @@ Here is the :class:`Header` class description:
Optional *continuation_ws* must be :rfc:`2822`\ -compliant folding whitespace,
and is usually either a space or a hard tab character. This character will be
- prepended to continuation lines.
+ prepended to continuation lines. *continuation_ws* defaults to a single
+ space character (" ").
Optional *errors* is passed straight through to the :meth:`append` method.