summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-09-05 17:09:18 (GMT)
committerGeorg Brandl <georg@python.org>2010-09-05 17:09:18 (GMT)
commit1f94cd0c7a244abf4e7d2c3216ff6f2058601f73 (patch)
tree44b6163aef024a12f4ce8744a78e500d38ea3d5d
parenta9b51d2a0e4c6875fb588c6bf97d7e4af6bb121c (diff)
downloadcpython-1f94cd0c7a244abf4e7d2c3216ff6f2058601f73.zip
cpython-1f94cd0c7a244abf4e7d2c3216ff6f2058601f73.tar.gz
cpython-1f94cd0c7a244abf4e7d2c3216ff6f2058601f73.tar.bz2
#9776: fix some spacing.
-rw-r--r--Modules/fcntlmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index 5bf4010..a7cdccb 100644
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -82,10 +82,10 @@ PyDoc_STRVAR(fcntl_doc,
Perform the requested operation on file descriptor fd. The operation\n\
is defined by op and is operating system dependent. These constants are\n\
available from the fcntl module. The argument arg is optional, and\n\
-defaults to 0; it may be an int or a string. If arg is given as a string,\n\
+defaults to 0; it may be an int or a string. If arg is given as a string,\n\
the return value of fcntl is a string of that length, containing the\n\
-resulting value put in the arg buffer by the operating system.The length\n\
-of the arg string is not allowed to exceed 1024 bytes. If the arg given\n\
+resulting value put in the arg buffer by the operating system. The length\n\
+of the arg string is not allowed to exceed 1024 bytes. If the arg given\n\
is an integer or if none is specified, the result value is an integer\n\
corresponding to the return value of the fcntl call in the C code.");