]> granicus.if.org Git - python/commitdiff
Document the context attribute of SSL sockets
authorAntoine Pitrou <solipsis@pitrou.net>
Mon, 24 May 2010 21:20:20 +0000 (21:20 +0000)
committerAntoine Pitrou <solipsis@pitrou.net>
Mon, 24 May 2010 21:20:20 +0000 (21:20 +0000)
Doc/library/ssl.rst

index 302cb00405454aceb6d5b4b1213db22bb4a4815c..bc55262d91abbd4d62d716db5bde5a2b687b5847 100644 (file)
@@ -407,6 +407,16 @@ SSL Sockets
    other side of the connection, rather than the original socket.
 
 
+.. attribute:: SSLSocket.context
+
+   The :class:`SSLContext` object this SSL socket is tied to.  If the SSL
+   socket was created using the top-level :func:`wrap_socket` function
+   (rather than :meth:`SSLContext.wrap_socket`), this is a custom context
+   object created for this SSL socket.
+
+   .. versionadded:: 3.2
+
+
 SSL Contexts
 ------------