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