summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorBill Janssen <janssen@parc.com>2008-09-08 16:37:24 (GMT)
committerBill Janssen <janssen@parc.com>2008-09-08 16:37:24 (GMT)
commit61c001a93942e5afc23d607f84f0ff04d01fc4b4 (patch)
treee87d226a16337b9e2010aae0013500e1e591284a /Doc
parent996b9f38db931b322b0cd252857e1fb2ad92b4ee (diff)
downloadcpython-61c001a93942e5afc23d607f84f0ff04d01fc4b4.zip
cpython-61c001a93942e5afc23d607f84f0ff04d01fc4b4.tar.gz
cpython-61c001a93942e5afc23d607f84f0ff04d01fc4b4.tar.bz2
incorporate fixes from issue 3162; SSL doc patch
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/ssl.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/Doc/library/ssl.rst b/Doc/library/ssl.rst
index df161fd..4fcc2f4 100644
--- a/Doc/library/ssl.rst
+++ b/Doc/library/ssl.rst
@@ -327,9 +327,10 @@ SSLSocket Objects
Performs the SSL shutdown handshake, which removes the TLS layer
from the underlying socket, and returns the underlying socket
object. This can be used to go from encrypted operation over a
- connection to unencrypted. The returned socket should always be
+ connection to unencrypted. The socket instance returned should always be
used for further communication with the other side of the
- connection, rather than the original socket
+ connection, rather than the original socket instance (which may
+ not function properly after the unwrap).
.. index:: single: certificates