]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
#11785: fix the :mod: references in email package submodule titles.
authorR David Murray <rdmurray@bitdance.com>
Sun, 27 May 2012 21:10:36 +0000 (17:10 -0400)
committerR David Murray <rdmurray@bitdance.com>
Sun, 27 May 2012 21:10:36 +0000 (17:10 -0400)
Also adds the TOC entry for headerregistry.

13 files changed:
Doc/library/email.charset.rst
Doc/library/email.encoders.rst
Doc/library/email.errors.rst
Doc/library/email.generator.rst
Doc/library/email.header.rst
Doc/library/email.headerregistry.rst
Doc/library/email.iterators.rst
Doc/library/email.message.rst
Doc/library/email.mime.rst
Doc/library/email.parser.rst
Doc/library/email.policy.rst
Doc/library/email.rst
Doc/library/email.util.rst

index 1249b71e2e5459aa54cce6b6b6667fe7766d2253..a828f3caa95a6268b4c663f06d6f5db0a3be85ee 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Representing character sets
------------------------------------------
+:mod:`email.charset`: Representing character sets
+-------------------------------------------------
 
 .. module:: email.charset
    :synopsis: Character Sets
index 81d30961db291175a496c13dc382c85114bae0ff..916ba5d18a7caa53a9c82a457b87aa3ce1dd66a3 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Encoders
-----------------------
+:mod:`email.encoders`: Encoders
+-------------------------------
 
 .. module:: email.encoders
    :synopsis: Encoders for email message payloads.
index e907c51cd285e3c023e79f097d71396b94189a81..d8f330f4bec3210bcc0fb43326ee44bb4dded267 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Exception and Defect classes
-------------------------------------------
+:mod:`email.errors`: Exception and Defect classes
+-------------------------------------------------
 
 .. module:: email.errors
    :synopsis: The exception classes used by the email package.
index 73440b82ba81175011ca9066ce253945cd3225ca..b8e4e91ff6fb3f6947cfe8efd35ce71416c2fae0 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Generating MIME documents
----------------------------------------
+:mod:`email.generator`: Generating MIME documents
+-------------------------------------------------
 
 .. module:: email.generator
    :synopsis: Generate flat text email messages from a message structure.
index 47a0749d527c1b7d40adb41f4cdde376dbe9aa4e..7d2dc2e61ec8399e98e9097604feffae02089540 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Internationalized headers
----------------------------------------
+:mod:`email.header`: Internationalized headers
+----------------------------------------------
 
 .. module:: email.header
    :synopsis: Representing non-ASCII headers
index 4fc9594bc3beb41aefb731e54488a0dbfc4bdb8e..97fcf2a57ec8b41638f7cc3520f3722b994650db 100644 (file)
@@ -4,6 +4,10 @@
 .. module:: email.headerregistry
    :synopsis: Automatic Parsing of headers based on the field name
 
+.. moduleauthor:: R. David Murray <rdmurray@bitdance.com>
+.. sectionauthor:: R. David Murray <rdmurray@bitdance.com>
+
+
 .. note::
 
    The headerregistry module has been included in the standard library on a
index 6c35b7988a7e12b6587d63f55c0028a37741cb8a..d1f1797e39ff6aec49f586abd7742a0153095297 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Iterators
------------------------
+:mod:`email.iterators`: Iterators
+---------------------------------
 
 .. module:: email.iterators
    :synopsis: Iterate over a  message object tree.
index 3e632581b7422e5e24cc4e1ca742625d8bf2fc34..f685e540d242e29bed4b66e6544d4e21594cd59f 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Representing an email message
--------------------------------------------
+:mod:`email.message`: Representing an email message
+---------------------------------------------------
 
 .. module:: email.message
    :synopsis: The base class representing email messages.
index f3f34c8dd17a10e60e44ccc81e4239d11ae23423..db5584c905aa88fba47bde8175ba9ff53af32244 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Creating email and MIME objects from scratch
-----------------------------------------------------------
+:mod:`email.mime`: Creating email and MIME objects from scratch
+---------------------------------------------------------------
 
 .. module:: email.mime
    :synopsis: Build MIME messages.
index a0303a4b6ec2ce3239fe28ee56791217a07549ce..96fe44442f6718c6e29f50dc996c2570f38d7f48 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Parsing email messages
-------------------------------------
+:mod:`email.parser`: Parsing email messages
+-------------------------------------------
 
 .. module:: email.parser
    :synopsis: Parse flat text email messages to produce a message object structure.
index 2ba0dbaaef7114174369fa06e13c0c4db7086c6b..9ab949eb7884e54969a8e552f5731aeec8d7c0a4 100644 (file)
@@ -1,9 +1,12 @@
-:mod:`email`: Policy Objects
-----------------------------
+:mod:`email.policy`: Policy Objects
+-----------------------------------
 
 .. module:: email.policy
    :synopsis: Controlling the parsing and generating of messages
 
+.. moduleauthor:: R. David Murray <rdmurray@bitdance.com>
+.. sectionauthor:: R. David Murray <rdmurray@bitdance.com>
+
 .. versionadded:: 3.3
 
 
index fc206f4db289e351108007c41f81b470249552a5..ef5354fee2c491d0d6e0134927540fb469a78efb 100644 (file)
@@ -52,6 +52,7 @@ Contents of the :mod:`email` package documentation:
    email.parser.rst
    email.generator.rst
    email.policy.rst
+   email.headerregistry.rst
    email.mime.rst
    email.header.rst
    email.charset.rst
index 1383104b1b7cb5c076719688f0068e341e7cdd36..b05c5d215087593d40394ca2a402229ed4266f0d 100644 (file)
@@ -1,5 +1,5 @@
-:mod:`email`: Miscellaneous utilities
--------------------------------------
+:mod:`email.utils`: Miscellaneous utilities
+-------------------------------------------
 
 .. module:: email.utils
    :synopsis: Miscellaneous email package utilities.