From 8d9a01a1f2eec6adfa736cb3b2439645d3a5c61e Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sat, 29 Jul 2006 15:43:13 +0000 Subject: [PATCH] Tweak wording --- Modules/fcntlmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c index 49a91445fc7..4e49a7d1201 100644 --- a/Modules/fcntlmodule.c +++ b/Modules/fcntlmodule.c @@ -290,7 +290,7 @@ PyDoc_STRVAR(flock_doc, "flock(fd, operation)\n\ \n\ Perform the lock operation op on file descriptor fd. See the Unix \n\ -manual flock(3) for details. (On some systems, this function is\n\ +manual page for flock(3) for details. (On some systems, this function is\n\ emulated using fcntl().)");