[Python-checkins] cpython: Fix broken docstring continuation line for detach().

guido.van.rossum python-checkins at python.org
Wed Dec 4 20:50:15 CET 2013


http://hg.python.org/cpython/rev/de531b2cfef0
changeset:   87764:de531b2cfef0
user:        Guido van Rossum <guido at python.org>
date:        Wed Dec 04 11:50:09 2013 -0800
summary:
  Fix broken docstring continuation line for detach().

files:
  Modules/socketmodule.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -2322,8 +2322,8 @@
 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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list