[Python-checkins] cpython (2.7): Issue #19147: Fix docstring for fcntl.flock to refer to correct man section.
ned.deily
python-checkins at python.org
Wed Oct 2 21:22:33 CEST 2013
http://hg.python.org/cpython/rev/43064ded64cb
changeset: 85933:43064ded64cb
branch: 2.7
parent: 85929:3770c6135400
user: Ned Deily <nad at acm.org>
date: Wed Oct 02 12:20:18 2013 -0700
summary:
Issue #19147: Fix docstring for fcntl.flock to refer to correct man section.
files:
Modules/fcntlmodule.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
--- a/Modules/fcntlmodule.c
+++ b/Modules/fcntlmodule.c
@@ -299,7 +299,7 @@
"flock(fd, operation)\n\
\n\
Perform the lock operation op on file descriptor fd. See the Unix \n\
-manual page for flock(3) for details. (On some systems, this function is\n\
+manual page for flock(2) for details. (On some systems, this function is\n\
emulated using fcntl().)");
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list