diff options
author | Mathieu Dupuy <deronnax@users.noreply.github.com> | 2020-03-30 21:28:25 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-30 21:28:25 (GMT) |
commit | c49016e67c3255b37599b354a8d7995d40663991 (patch) | |
tree | bf1d5863153f8d9e6f74d7e41681e293d1db8a8c /Doc/library/ssl.rst | |
parent | 51e3e450fbed46198d9be92add1a5dee6a1f7f41 (diff) | |
download | cpython-c49016e67c3255b37599b354a8d7995d40663991.zip cpython-c49016e67c3255b37599b354a8d7995d40663991.tar.gz cpython-c49016e67c3255b37599b354a8d7995d40663991.tar.bz2 |
fix comma location in various places (GH-19233)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r-- | Doc/library/ssl.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 3e5fcab..570d4f7 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -42,7 +42,7 @@ This module provides a class, :class:`ssl.SSLSocket`, which is derived from the :class:`socket.socket` type, and provides a socket-like wrapper that also encrypts and decrypts the data going over the socket with SSL. It supports additional methods such as :meth:`getpeercert`, which retrieves the -certificate of the other side of the connection, and :meth:`cipher`,which +certificate of the other side of the connection, and :meth:`cipher`, which retrieves the cipher being used for the secure connection. For more sophisticated applications, the :class:`ssl.SSLContext` class @@ -2271,7 +2271,7 @@ Visual inspection shows that the certificate does identify the desired service (('postalCode', '03894-4801'),), (('countryName', 'US'),), (('stateOrProvinceName', 'NH'),), - (('localityName', 'Wolfeboro,'),), + (('localityName', 'Wolfeboro'),), (('organizationName', 'Python Software Foundation'),), (('commonName', 'www.python.org'),)), 'subjectAltName': (('DNS', 'www.python.org'), |