diff options
author | Martin Panter <vadmium+py@gmail.com> | 2016-09-07 12:03:06 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2016-09-07 12:03:06 (GMT) |
commit | 0be894b2f6ca17204922399d6982f0b8a9dc59a1 (patch) | |
tree | 74e27a76dc86b36370cc6afb9c160f7503cc7599 /Doc/library | |
parent | be8da9c9906571698fe218da9e218ece500d5239 (diff) | |
download | cpython-0be894b2f6ca17204922399d6982f0b8a9dc59a1.zip cpython-0be894b2f6ca17204922399d6982f0b8a9dc59a1.tar.gz cpython-0be894b2f6ca17204922399d6982f0b8a9dc59a1.tar.bz2 |
Issue #27895: Spelling fixes (Contributed by Ville Skyttä).
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/email.contentmanager.rst | 2 | ||||
-rw-r--r-- | Doc/library/smtpd.rst | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/email.contentmanager.rst b/Doc/library/email.contentmanager.rst index c25d073..a9c078b 100644 --- a/Doc/library/email.contentmanager.rst +++ b/Doc/library/email.contentmanager.rst @@ -433,5 +433,5 @@ Currently the email package provides only one concrete content manager, If *headers* is specified and is a list of strings of the form ``headername: headervalue`` or a list of ``header`` objects - (distinguised from strings by having a ``name`` attribute), add the + (distinguished from strings by having a ``name`` attribute), add the headers to *msg*. diff --git a/Doc/library/smtpd.rst b/Doc/library/smtpd.rst index 080411b..a096de0 100644 --- a/Doc/library/smtpd.rst +++ b/Doc/library/smtpd.rst @@ -45,7 +45,7 @@ SMTPServer Objects dictionary is a suitable value). If not specified the :mod:`asyncore` global socket map is used. - *enable_SMTPUTF8* determins whether the ``SMTPUTF8`` extension (as defined + *enable_SMTPUTF8* determines whether the ``SMTPUTF8`` extension (as defined in :RFC:`6531`) should be enabled. The default is ``False``. If set to ``True``, *decode_data* must be ``False`` (otherwise an error is raised). When ``True``, ``SMTPUTF8`` is accepted as a parameter to the ``MAIL`` @@ -162,7 +162,7 @@ SMTPChannel Objects accepted in a ``DATA`` command. A value of ``None`` or ``0`` means no limit. - *enable_SMTPUTF8* determins whether the ``SMTPUTF8`` extension (as defined + *enable_SMTPUTF8* determines whether the ``SMTPUTF8`` extension (as defined in :RFC:`6531`) should be enabled. The default is ``False``. A :exc:`ValueError` is raised if both *enable_SMTPUTF8* and *decode_data* are set to ``True`` at the same time. |