diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2018-03-28 19:14:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-28 19:14:26 (GMT) |
commit | bac2d5ba30339298db7d4caa9c8cd31d807cf081 (patch) | |
tree | d08e103d7d7f2ef41b56c2e7d8c360663bf7780e /Doc/whatsnew | |
parent | aa50bf08e64f49d57917ab0b1aadf4308a3168a6 (diff) | |
download | cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.zip cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.gz cpython-bac2d5ba30339298db7d4caa9c8cd31d807cf081.tar.bz2 |
Fix duplicating words words. (GH-6296)
Most of them have been added in 3.7.
Diffstat (limited to 'Doc/whatsnew')
-rw-r--r-- | Doc/whatsnew/3.7.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/whatsnew/3.7.rst b/Doc/whatsnew/3.7.rst index e0c19cf..1f52488 100644 --- a/Doc/whatsnew/3.7.rst +++ b/Doc/whatsnew/3.7.rst @@ -684,7 +684,7 @@ feature. Instances must be created with :class:`~ssl.SSLContext` methods (Contributed by Christian Heimes in :issue:`32951`) OpenSSL 1.1 APIs for setting the minimum and maximum TLS protocol version are -available as as :attr:`~ssl.SSLContext.minimum_version` and +available as :attr:`~ssl.SSLContext.minimum_version` and :attr:`~ssl.SSLContext.maximum_version`. Supported protocols are indicated by new flags like :data:`~ssl.HAS_TLSv1_1`. (Contributed by Christian Heimes in :issue:`32609`.) |