From: Ben Darnell Date: Sat, 11 Jun 2011 21:32:54 +0000 (-0700) Subject: One more autodoc cleanup X-Git-Tag: v2.0.0~20^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79a9052b0ac13684b4b8825324a03316d7dae6ed;p=thirdparty%2Ftornado.git One more autodoc cleanup --- diff --git a/tornado/iostream.py b/tornado/iostream.py index d9c8b7dcb..698c9dda7 100644 --- a/tornado/iostream.py +++ b/tornado/iostream.py @@ -414,8 +414,10 @@ class SSLIOStream(IOStream): """A utility class to write to and read from a non-blocking socket. If the socket passed to the constructor is already connected, - it should be wrapped with + it should be wrapped with:: + ssl.wrap_socket(sock, do_handshake_on_connect=False, **kwargs) + before constructing the SSLIOStream. Unconnected sockets will be wrapped when IOStream.connect is finished. """