mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
fix comma location in various places (GH-19233)
This commit is contained in:
parent
51e3e450fb
commit
c49016e67c
8 changed files with 9 additions and 9 deletions
|
@ -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'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue