summaryrefslogtreecommitdiff
path: root/Modules/fcntlmodule.c
diff options
context:
space:
mode:
authorNed Deily <nad@acm.org>2013-10-02 12:20:46 -0700
committerNed Deily <nad@acm.org>2013-10-02 12:20:46 -0700
commit2a8b3f26b91d6f1774c73fe4f545d2eb94475525 (patch)
treeff0295ac8c4e38fd787838340ecb1c05bcc6fdaf /Modules/fcntlmodule.c
parent706f0f5f57ace45d061206e1fb873f5a33c61b44 (diff)
downloadcpython-git-2a8b3f26b91d6f1774c73fe4f545d2eb94475525.tar.gz
Issue #19147: Fix docstring for fcntl.flock to refer to correct man section.
Diffstat (limited to 'Modules/fcntlmodule.c')
-rw-r--r--Modules/fcntlmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/fcntlmodule.c b/Modules/fcntlmodule.c
index 6b7e3fc6e1..de1e0daa30 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().)");