Merge #16071: fix more email.message links in mailbox docs.

This commit is contained in:
R David Murray 2012-09-28 15:19:42 -04:00
commit 7dcbd2c873
1 changed files with 6 additions and 6 deletions

View File

@ -10,9 +10,9 @@
This module defines two classes, :class:`Mailbox` and :class:`Message`, for This module defines two classes, :class:`Mailbox` and :class:`Message`, for
accessing and manipulating on-disk mailboxes and the messages they contain. accessing and manipulating on-disk mailboxes and the messages they contain.
:class:`Mailbox` offers a dictionary-like mapping from keys to messages. :class:`Mailbox` offers a dictionary-like mapping from keys to messages.
:class:`Message` extends the :mod:`email.Message` module's :class:`Message` :class:`Message` extends the :mod:`email.message` module's
class with format-specific state and behavior. Supported mailbox formats are :class:`~email.message.Message` class with format-specific state and behavior.
Maildir, mbox, MH, Babyl, and MMDF. Supported mailbox formats are Maildir, mbox, MH, Babyl, and MMDF.
.. seealso:: .. seealso::
@ -81,7 +81,7 @@ Maildir, mbox, MH, Babyl, and MMDF.
it. it.
Parameter *message* may be a :class:`Message` instance, an Parameter *message* may be a :class:`Message` instance, an
:class:`email.Message.Message` instance, a string, a byte string, or a :class:`email.message.Message` instance, a string, a byte string, or a
file-like object (which should be open in binary mode). If *message* is file-like object (which should be open in binary mode). If *message* is
an instance of the an instance of the
appropriate format-specific :class:`Message` subclass (e.g., if it's an appropriate format-specific :class:`Message` subclass (e.g., if it's an
@ -112,7 +112,7 @@ Maildir, mbox, MH, Babyl, and MMDF.
:exc:`KeyError` exception if no message already corresponds to *key*. :exc:`KeyError` exception if no message already corresponds to *key*.
As with :meth:`add`, parameter *message* may be a :class:`Message` As with :meth:`add`, parameter *message* may be a :class:`Message`
instance, an :class:`email.Message.Message` instance, a string, a byte instance, an :class:`email.message.Message` instance, a string, a byte
string, or a file-like object (which should be open in binary mode). If string, or a file-like object (which should be open in binary mode). If
*message* is an *message* is an
instance of the appropriate format-specific :class:`Message` subclass instance of the appropriate format-specific :class:`Message` subclass
@ -1268,7 +1268,7 @@ When an :class:`MHMessage` instance is created based upon a
Set the message's visible headers to be the same as the headers in Set the message's visible headers to be the same as the headers in
*message*. Parameter *visible* should be a :class:`Message` instance, an *message*. Parameter *visible* should be a :class:`Message` instance, an
:class:`email.Message.Message` instance, a string, or a file-like object :class:`email.message.Message` instance, a string, or a file-like object
(which should be open in text mode). (which should be open in text mode).