diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2022-04-30 21:45:02 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-30 21:45:02 (GMT) |
commit | 2830543247219427f46fa36a873eaa4b37813fa1 (patch) | |
tree | 340d68d29478d745f7fc58352ca1228d7fe955b9 | |
parent | 2c859e3d589b2a47b0b5267e77a4f80034f3058d (diff) | |
download | cpython-2830543247219427f46fa36a873eaa4b37813fa1.zip cpython-2830543247219427f46fa36a873eaa4b37813fa1.tar.gz cpython-2830543247219427f46fa36a873eaa4b37813fa1.tar.bz2 |
gh-87192: Update wording for fcntl 'Changed in' (GH-91658)
(cherry picked from commit d7eb1ffbe8f913693e4c9ffa1b32edccac987ab6)
Co-authored-by: slateny <46876382+slateny@users.noreply.github.com>
-rw-r--r-- | Doc/library/fcntl.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/fcntl.rst b/Doc/library/fcntl.rst index 07a15d2..f1c071a 100644 --- a/Doc/library/fcntl.rst +++ b/Doc/library/fcntl.rst @@ -37,7 +37,8 @@ descriptor. On macOS, the fcntl module exposes the ``F_GETPATH`` constant, which obtains the path of a file from a file descriptor. On Linux(>=3.15), the fcntl module exposes the ``F_OFD_GETLK``, ``F_OFD_SETLK`` - and ``F_OFD_SETLKW`` constants, which working with open file description locks. + and ``F_OFD_SETLKW`` constants, which are used when working with open file + description locks. The module defines the following functions: |