diff options
author | Georg Brandl <georg@python.org> | 2010-12-19 10:28:46 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-12-19 10:28:46 (GMT) |
commit | c88435023c909dd9575ff81b4c7f86cf68108537 (patch) | |
tree | d88419395b9fe51e37c1690e2ee16ebc8a589d02 /Doc/library | |
parent | 3de338f47ecc5ec0e07421c3a3739eb4ee44d3f8 (diff) | |
download | cpython-c88435023c909dd9575ff81b4c7f86cf68108537.zip cpython-c88435023c909dd9575ff81b4c7f86cf68108537.tar.gz cpython-c88435023c909dd9575ff81b4c7f86cf68108537.tar.bz2 |
Fix markup error and update suspicious file.
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/email.message.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/email.message.rst b/Doc/library/email.message.rst index 386e11d..e76e689 100644 --- a/Doc/library/email.message.rst +++ b/Doc/library/email.message.rst @@ -274,10 +274,10 @@ Here are the methods of the :class:`Message` class: it can be specified as a three tuple in the format ``(CHARSET, LANGUAGE, VALUE)``, where ``CHARSET`` is a string naming the charset to be used to encode the value, ``LANGUAGE`` can usually be set - to ``None`` or the empty string (see :RFC:`2231` for other possibilities), + to ``None`` or the empty string (see :rfc:`2231` for other possibilities), and ``VALUE`` is the string value containing non-ASCII code points. If a three tuple is not passed and the value contains non-ASCII characters, - it is automatically encoded in :RFC`2231` format using a ``CHARSET`` + it is automatically encoded in :rfc:`2231` format using a ``CHARSET`` of ``utf-8`` and a ``LANGUAGE`` of ``None``. Here's an example:: |