summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>2009-03-30 23:12:30 +0000
committerBarry Warsaw <barry@python.org>2009-03-30 23:12:30 +0000
commit70d61cedf7b2efe358d11a6a14fe654f21f2598c (patch)
treec85e376ced8722559702621905cfdf2fd6f4f5e1 /Doc
parent35d1f00902d6665f7f833bda5fad2fb6c0efce95 (diff)
downloadcpython-git-70d61cedf7b2efe358d11a6a14fe654f21f2598c.tar.gz
"Port" the fix for issue 1974 from the trunk (2.7). Because Python 3.x does things much better, less changes are necessary.
This also shoves test_email_codecs_rename.py onto test_email_codecs.py even though the test needs to be ported to Python 3.
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 5f37264806..7ee4a2df68 100644
--- a/Doc/library/email.header.rst
+++ b/Doc/library/email.header.rst
@@ -72,7 +72,7 @@ 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.