diff options
author | Toshio Kuratomi <a.badger@gmail.com> | 2019-05-06 20:28:14 (GMT) |
---|---|---|
committer | Lisa Roach <lisaroach14@gmail.com> | 2019-05-06 20:28:14 (GMT) |
commit | 7b3a028c357dcc76b5aff7297e7c8052f897afb5 (patch) | |
tree | e82c26f789468d447d5a8db13cafd5c393109dd5 /Doc/library/ssl.rst | |
parent | d53cf99dca4605ace4b81b1e585616b3e1b74fa6 (diff) | |
download | cpython-7b3a028c357dcc76b5aff7297e7c8052f897afb5.zip cpython-7b3a028c357dcc76b5aff7297e7c8052f897afb5.tar.gz cpython-7b3a028c357dcc76b5aff7297e7c8052f897afb5.tar.bz2 |
Fix rst formatting for several links in ssl documentation (GH-13133)
Diffstat (limited to 'Doc/library/ssl.rst')
-rw-r--r-- | Doc/library/ssl.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 6a44198..20f5724 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -665,7 +665,7 @@ Constants .. data:: PROTOCOL_SSLv23 - Alias for data:`PROTOCOL_TLS`. + Alias for :data:`PROTOCOL_TLS`. .. deprecated:: 3.6 @@ -1821,7 +1821,7 @@ to speed up repeated connections from the same clients. .. attribute:: SSLContext.sslsocket_class - The return type of :meth:`SSLContext.wrap_sockets`, defaults to + The return type of :meth:`SSLContext.wrap_socket`, defaults to :class:`SSLSocket`. The attribute can be overridden on instance of class in order to return a custom subclass of :class:`SSLSocket`. @@ -1831,7 +1831,7 @@ to speed up repeated connections from the same clients. server_hostname=None, session=None) Wrap the BIO objects *incoming* and *outgoing* and return an instance of - attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL + :attr:`SSLContext.sslobject_class` (default :class:`SSLObject`). The SSL routines will read input data from the incoming BIO and write data to the outgoing BIO. |