From: Ezio Melotti Date: Fri, 13 Sep 2013 19:55:08 +0000 (+0300) Subject: Fix markup in email.parser docs. X-Git-Tag: v2.7.6rc1~154 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=802fa397d57df6e1b9086e4979f9d9779c3e0a06;p=python Fix markup in email.parser docs. --- diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst index 6cc0494cde..0f99a2fb04 100644 --- a/Doc/library/email.parser.rst +++ b/Doc/library/email.parser.rst @@ -168,7 +168,7 @@ in the top-level :mod:`email` package namespace. Return a message object structure from a string. This is exactly equivalent to ``Parser().parsestr(s)``. Optional *_class* and *strict* are interpreted as - with the :class:``~email.parser.Parser` class constructor. + with the :class:`~email.parser.Parser` class constructor. .. versionchanged:: 2.2.2 The *strict* flag was added. @@ -178,7 +178,7 @@ in the top-level :mod:`email` package namespace. Return a message object structure tree from an open file object. This is exactly equivalent to ``Parser().parse(fp)``. Optional *_class* and *strict* - are interpreted as with the :class:``~email.parser.Parser` class constructor. + are interpreted as with the :class:`~email.parser.Parser` class constructor. .. versionchanged:: 2.2.2 The *strict* flag was added.