diff options
author | Georg Brandl <georg@python.org> | 2009-06-04 10:23:20 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-06-04 10:23:20 (GMT) |
commit | ec8068891c83c983985cb65256ccb134b9ae643a (patch) | |
tree | 2638d95bc6d111f9ee19cfe930dc567a5ff6968c /Doc/library | |
parent | 3cfdd9c1d53bdcc95b3779caaa2ab5953b604797 (diff) | |
download | cpython-ec8068891c83c983985cb65256ccb134b9ae643a.zip cpython-ec8068891c83c983985cb65256ccb134b9ae643a.tar.gz cpython-ec8068891c83c983985cb65256ccb134b9ae643a.tar.bz2 |
Merged revisions 73215 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73215 | georg.brandl | 2009-06-04 12:22:31 +0200 (Do, 04 Jun 2009) | 1 line
#6176: fix man page section for flock(2).
........
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/fcntl.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/fcntl.rst b/Doc/library/fcntl.rst index a397afc..97fbb50 100644 --- a/Doc/library/fcntl.rst +++ b/Doc/library/fcntl.rst @@ -90,7 +90,7 @@ The module defines the following functions: Perform the lock operation *op* on file descriptor *fd* (file objects providing a :meth:`fileno` method are accepted as well). See the Unix manual - :manpage:`flock(3)` for details. (On some systems, this function is emulated + :manpage:`flock(2)` for details. (On some systems, this function is emulated using :cfunc:`fcntl`.) |