summaryrefslogtreecommitdiffstats
path: root/Doc/library/email.parser.rst
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-10-19 06:14:08 (GMT)
committerBenjamin Peterson <benjamin@python.org>2016-10-19 06:14:08 (GMT)
commitb17ba095f2815a386459bc9989ad7276f4f80a96 (patch)
treece6cc7646d41428ed180f70eb12e0c5c90eccfeb /Doc/library/email.parser.rst
parentfa22b29960b4e683f4e5d7e308f674df2620473c (diff)
downloadcpython-b17ba095f2815a386459bc9989ad7276f4f80a96.zip
cpython-b17ba095f2815a386459bc9989ad7276f4f80a96.tar.gz
cpython-b17ba095f2815a386459bc9989ad7276f4f80a96.tar.bz2
bold arguments
Diffstat (limited to 'Doc/library/email.parser.rst')
-rw-r--r--Doc/library/email.parser.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/library/email.parser.rst b/Doc/library/email.parser.rst
index 2ac1f98..c323ebc 100644
--- a/Doc/library/email.parser.rst
+++ b/Doc/library/email.parser.rst
@@ -92,7 +92,7 @@ Here is the API for the :class:`BytesFeedParser`:
.. versionadded:: 3.2
.. versionchanged:: 3.3 Added the *policy* keyword.
- .. versionchanged:: 3.6 _factory defaults to the policy ``message_factory``.
+ .. versionchanged:: 3.6 *_factory* defaults to the policy ``message_factory``.
.. method:: feed(data)
@@ -148,7 +148,7 @@ message body, instead setting the payload to the raw body.
.. versionchanged:: 3.3
Removed the *strict* argument that was deprecated in 2.4. Added the
*policy* keyword.
- .. versionchanged:: 3.6 _class defaults to the policy ``message_factory``.
+ .. versionchanged:: 3.6 *_class* defaults to the policy ``message_factory``.
.. method:: parse(fp, headersonly=False)
@@ -197,7 +197,7 @@ message body, instead setting the payload to the raw body.
.. versionchanged:: 3.3
Removed the *strict* argument. Added the *policy* keyword.
- .. versionchanged:: 3.6 _class defaults to the policy ``message_factory``.
+ .. versionchanged:: 3.6 *_class* defaults to the policy ``message_factory``.
.. method:: parse(fp, headersonly=False)
@@ -277,7 +277,7 @@ in the top-level :mod:`email` package namespace.
.. versionchanged:: 3.3
Removed the *strict* argument. Added the *policy* keyword.
- .. versionchanged:: 3.6 _class defaults to the policy ``message_factory``.
+ .. versionchanged:: 3.6 *_class* defaults to the policy ``message_factory``.
Here's an example of how you might use :func:`message_from_bytes` at an