From: Guido van Rossum Date: Wed, 4 Dec 2013 19:50:09 +0000 (-0800) Subject: Fix broken docstring continuation line for detach(). X-Git-Tag: v3.4.0b2~343 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=638aebd58e16a686ea8641f94ca714c406df1792;p=thirdparty%2FPython%2Fcpython.git Fix broken docstring continuation line for detach(). --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 1444369e1b0a..92d52d11ce51 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -2322,8 +2322,8 @@ sock_detach(PySocketSockObject *s) PyDoc_STRVAR(detach_doc, "detach()\n\ \n\ -Close the socket object without closing the underlying file descriptor.\ -The object cannot be used after this call, but the file descriptor\ +Close the socket object without closing the underlying file descriptor.\n\ +The object cannot be used after this call, but the file descriptor\n\ can be reused for other purposes. The file descriptor is returned."); static int