This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Reference to a wrong version of flock's documentation
Type: Stage:
Components: Documentation Versions: Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: georg.brandl, pakal
Priority: normal Keywords:

Created on 2009-06-02 09:51 by pakal, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg88735 - (view) Author: Pascal Chambon (pakal) * Date: 2009-06-02 09:51
It seems that the "flock" wrapped by the fcntl module is the one
descriebd in "flock(2)", not "flock(3)" (just in case this might confuse
people...)

Quote : 
"""
fcntl.flock(fd, op)
Perform the lock operation op on file descriptor fd (file objects
providing a fileno() method are accepted as well). See the Unix manual
flock(3) for details. (On some systems, this function is emulated using
fcntl.)
"""

Regards, 
Pascal
msg88876 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2009-06-04 10:22
Thanks, fixed in r73215.
History
Date User Action Args
2022-04-11 14:56:49adminsetgithub: 50426
2009-06-04 10:22:46georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg88876
2009-06-02 09:51:19pakalcreate