diff options
author | Andre Delfino <adelfino@gmail.com> | 2018-12-05 19:45:30 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-12-05 19:45:30 (GMT) |
commit | 55f41e45b4318cbe19209f5144641344d0049fb8 (patch) | |
tree | ec0b6422a595cf8cfbae67d0525f6644b9314833 /Doc/library/email.compat32-message.rst | |
parent | 1ce853f37783575e2b3aaa159ddcebc8660830ef (diff) | |
download | cpython-55f41e45b4318cbe19209f5144641344d0049fb8.zip cpython-55f41e45b4318cbe19209f5144641344d0049fb8.tar.gz cpython-55f41e45b4318cbe19209f5144641344d0049fb8.tar.bz2 |
Correct a couple of unbalanced parenthesis. (GH-10779)
Diffstat (limited to 'Doc/library/email.compat32-message.rst')
-rw-r--r-- | Doc/library/email.compat32-message.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/email.compat32-message.rst b/Doc/library/email.compat32-message.rst index d884950..f02b35b 100644 --- a/Doc/library/email.compat32-message.rst +++ b/Doc/library/email.compat32-message.rst @@ -152,7 +152,7 @@ Here are the methods of the :class:`Message` class: Return ``True`` if the message's payload is a list of sub-\ :class:`Message` objects, otherwise return ``False``. When :meth:`is_multipart` returns ``False``, the payload should be a string - object (which might be a CTE encoded binary payload. (Note that + object (which might be a CTE encoded binary payload). (Note that :meth:`is_multipart` returning ``True`` does not necessarily mean that "msg.get_content_maintype() == 'multipart'" will return the ``True``. For example, ``is_multipart`` will return ``True`` when the |