From: Ned Deily Date: Wed, 2 Oct 2013 19:20:46 +0000 (-0700) Subject: Issue #19147: Fix docstring for fcntl.flock to refer to correct man section. X-Git-Tag: v3.4.0a4~288^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2a8b3f26b91d6f1774c73fe4f545d2eb94475525;p=thirdparty%2FPython%2Fcpython.git Issue #19147: Fix docstring for fcntl.flock to refer to correct man section. --- diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index 6b7e3fc6e1da..de1e0daa30a6 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -309,7 +309,7 @@ PyDoc_STRVAR(flock_doc, "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().)");