diff options
author | R David Murray <rdmurray@bitdance.com> | 2012-09-28 15:09:31 -0400 |
---|---|---|
committer | R David Murray <rdmurray@bitdance.com> | 2012-09-28 15:09:31 -0400 |
commit | c5fe4073af0247bdf7913e9391ed3b9aab02f63f (patch) | |
tree | 9b54b47acaa9f674280e93efc4a3f32dd2996c87 /Doc/library/mailbox.rst | |
parent | 33b5769db550b0e318f7b9fea097c6d1386d02ba (diff) | |
download | cpython-git-c5fe4073af0247bdf7913e9391ed3b9aab02f63f.tar.gz |
#16071: fix links to email.message.Message in mailbox docs.
Diffstat (limited to 'Doc/library/mailbox.rst')
-rw-r--r-- | Doc/library/mailbox.rst | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst index 8623630aaa..54d7758094 100644 --- a/Doc/library/mailbox.rst +++ b/Doc/library/mailbox.rst @@ -757,11 +757,12 @@ Maildir, mbox, MH, Babyl, and MMDF. .. class:: Message(message=None) - A subclass of the :mod:`email.Message` module's :class:`Message`. Subclasses of - :class:`mailbox.Message` add mailbox-format-specific state and behavior. + A subclass of the :mod:`email.message` module's + :class:`~email.message.Message`. Subclasses of :class:`mailbox.Message` add + mailbox-format-specific state and behavior. If *message* is omitted, the new instance is created in a default, empty state. - If *message* is an :class:`email.Message.Message` instance, its contents are + If *message* is an :class:`email.message.Message` instance, its contents are copied; furthermore, any format-specific information is converted insofar as possible if *message* is a :class:`Message` instance. If *message* is a string, a byte string, |