diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-05-26 08:04:14 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-26 08:04:14 (GMT) |
commit | 1c5d1d7304a119040fd3118128bdb412f0cce6a6 (patch) | |
tree | 030069f485f38911b5a8fdef3f4668040ada6b00 /Doc | |
parent | 2b0e654f91f28379c6c7ef5fd80e8754afb70935 (diff) | |
download | cpython-1c5d1d7304a119040fd3118128bdb412f0cce6a6.zip cpython-1c5d1d7304a119040fd3118128bdb412f0cce6a6.tar.gz cpython-1c5d1d7304a119040fd3118128bdb412f0cce6a6.tar.bz2 |
Remove duplicated words words (GH-20413)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/ssl.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.8.rst | 2 | ||||
-rw-r--r-- | Doc/whatsnew/3.9.rst | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 952ee16..852091c 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -615,7 +615,7 @@ Constants Possible value for :attr:`SSLContext.verify_flags`. In this mode, only the peer cert is checked but none of the intermediate CA certificates. The mode requires a valid CRL that is signed by the peer cert's issuer (its direct - ancestor CA). If no proper CRL has has been loaded with + ancestor CA). If no proper CRL has been loaded with :attr:`SSLContext.load_verify_locations`, validation will fail. .. versionadded:: 3.4 diff --git a/Doc/whatsnew/3.8.rst b/Doc/whatsnew/3.8.rst index fdfc0a8..b6ed2da 100644 --- a/Doc/whatsnew/3.8.rst +++ b/Doc/whatsnew/3.8.rst @@ -1692,7 +1692,7 @@ Deprecated :meth:`~gettext.NullTranslations.set_output_charset`, and the *codeset* parameter of functions :func:`~gettext.translation` and :func:`~gettext.install` are also deprecated, since they are only used for - for the ``l*gettext()`` functions. + the ``l*gettext()`` functions. (Contributed by Serhiy Storchaka in :issue:`33710`.) * The :meth:`~threading.Thread.isAlive()` method of :class:`threading.Thread` diff --git a/Doc/whatsnew/3.9.rst b/Doc/whatsnew/3.9.rst index ebb24eb..d72fea2 100644 --- a/Doc/whatsnew/3.9.rst +++ b/Doc/whatsnew/3.9.rst @@ -868,7 +868,7 @@ Removed (Contributed by Victor Stinner in :issue:`39489`.) * The ``_field_types`` attribute of the :class:`typing.NamedTuple` class - has been removed. It was deprecated deprecated since Python 3.8. Use + has been removed. It was deprecated since Python 3.8. Use the ``__annotations__`` attribute instead. (Contributed by Serhiy Storchaka in :issue:`40182`.) |