From: Ned Deily Date: Wed, 2 Oct 2013 19:20:18 +0000 (-0700) Subject: Issue #19147: Fix docstring for fcntl.flock to refer to correct man section. X-Git-Tag: v2.7.6rc1~115 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ebca3a5ab9bfb2a4bd2662619c3c8a9256fa1ed7;p=python Issue #19147: Fix docstring for fcntl.flock to refer to correct man section. --- diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index 997867a136..cd5c98f181 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -299,7 +299,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().)");