diff options
author | Rémi Lapeyre <remi.lapeyre@henki.fr> | 2020-04-07 07:38:59 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-07 07:38:59 (GMT) |
commit | 74e1b6b100719e11471e7e9949465655477926e2 (patch) | |
tree | 6977dde311e52260c9f37808f7c2b93194a77ed9 | |
parent | f407e209c1e35b64835f73e7e7ca23e33817e9fe (diff) | |
download | cpython-74e1b6b100719e11471e7e9949465655477926e2.zip cpython-74e1b6b100719e11471e7e9949465655477926e2.tar.gz cpython-74e1b6b100719e11471e7e9949465655477926e2.tar.bz2 |
Document missing methods of ssl.SSLObject (#19400)
Co-authored-by: Rémi Lapeyre <remi.lapeyre@lenstra.fr>
-rw-r--r-- | Doc/library/ssl.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst index 570d4f7..952ee16 100644 --- a/Doc/library/ssl.rst +++ b/Doc/library/ssl.rst @@ -2486,14 +2486,17 @@ provided. - :meth:`~SSLSocket.read` - :meth:`~SSLSocket.write` - :meth:`~SSLSocket.getpeercert` + - :meth:`~SSLSocket.selected_alpn_protocol` - :meth:`~SSLSocket.selected_npn_protocol` - :meth:`~SSLSocket.cipher` - :meth:`~SSLSocket.shared_ciphers` - :meth:`~SSLSocket.compression` - :meth:`~SSLSocket.pending` - :meth:`~SSLSocket.do_handshake` + - :meth:`~SSLSocket.verify_client_post_handshake` - :meth:`~SSLSocket.unwrap` - :meth:`~SSLSocket.get_channel_binding` + - :meth:`~SSLSocket.version` When compared to :class:`SSLSocket`, this object lacks the following features: |