[Python-checkins] cpython (3.2): #16071: fix links to email.message.Message in mailbox docs.

r.david.murray python-checkins at python.org
Fri Sep 28 21:20:36 CEST 2012


http://hg.python.org/cpython/rev/be94d100f846
changeset:   79222:be94d100f846
branch:      3.2
parent:      79216:c87ea480ddf3
user:        R David Murray <rdmurray at bitdance.com>
date:        Fri Sep 28 15:09:31 2012 -0400
summary:
  #16071: fix links to email.message.Message in mailbox docs.

files:
  Doc/library/mailbox.rst |  7 ++++---
  1 files changed, 4 insertions(+), 3 deletions(-)


diff --git a/Doc/library/mailbox.rst b/Doc/library/mailbox.rst
--- a/Doc/library/mailbox.rst
+++ b/Doc/library/mailbox.rst
@@ -757,11 +757,12 @@
 
 .. 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,

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list