From 638aebd58e16a686ea8641f94ca714c406df1792 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 4 Dec 2013 11:50:09 -0800 Subject: [PATCH] Fix broken docstring continuation line for detach(). --- Modules/socketmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 1444369e1b0..92d52d11ce5 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