diff options
author | Guido van Rossum <guido@python.org> | 2013-12-04 19:50:09 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2013-12-04 19:50:09 (GMT) |
commit | 638aebd58e16a686ea8641f94ca714c406df1792 (patch) | |
tree | 305d03535a6862d5522ab986370d76ab9181dafe /Modules/socketmodule.c | |
parent | 1da3ba8697b3b72f6a1c2d22f7920977d59d661d (diff) | |
download | cpython-638aebd58e16a686ea8641f94ca714c406df1792.zip cpython-638aebd58e16a686ea8641f94ca714c406df1792.tar.gz cpython-638aebd58e16a686ea8641f94ca714c406df1792.tar.bz2 |
Fix broken docstring continuation line for detach().
Diffstat (limited to 'Modules/socketmodule.c')
-rw-r--r-- | Modules/socketmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 1444369..92d52d1 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 |