summaryrefslogtreecommitdiff
path: root/Lib/email/message.py
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2010-12-14 00:29:27 +0000
committerR. David Murray <rdmurray@bitdance.com>2010-12-14 00:29:27 +0000
commita9aa34c7cd3eb9bfc88d2a4eed0ad78a8e8c885a (patch)
treef2b39b0ec1c97707601eb1253ebffc4cd2357761 /Lib/email/message.py
parent910c52fcf4ef25ce4c765aa3f2733704b4adaab7 (diff)
downloadcpython-git-a9aa34c7cd3eb9bfc88d2a4eed0ad78a8e8c885a.tar.gz
#1078919: document requirement to use triples for non-ascii add_header parms.
Diffstat (limited to 'Lib/email/message.py')
-rw-r--r--Lib/email/message.py9
1 files changed, 7 insertions, 2 deletions
diff --git a/Lib/email/message.py b/Lib/email/message.py
index 40f808e8b5..7c93370984 100644
--- a/Lib/email/message.py
+++ b/Lib/email/message.py
@@ -38,7 +38,9 @@ def _splitparam(param):
def _formatparam(param, value=None, quote=True):
"""Convenience function to format and return a key=value pair.
- This will quote the value if needed or if quote is true.
+ This will quote the value if needed or if quote is true. If value is a
+ three tuple (charset, language, value), it will be encoded according
+ to RFC2231 rules.
"""
if value is not None and len(value) > 0:
# A tuple is used for RFC 2231 encoded parameter values where items
@@ -389,7 +391,10 @@ class Message:
name is the header field to add. keyword arguments can be used to set
additional parameters for the header field, with underscores converted
to dashes. Normally the parameter will be added as key="value" unless
- value is None, in which case only the key will be added.
+ value is None, in which case only the key will be added. If a
+ parameter value contains non-ASCII characters it must be specified as a
+ three-tuple of (charset, language, value), in which case it will be
+ encoded according to RFC2231 rules.
Example: