10000 gh-101100: Fix broken xrefs in fcntl module doc by smontanaro · Pull Request #115691 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-101100: Fix broken xrefs in fcntl module doc #115691

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
Feb 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
:data: back to :const:
  • Loading branch information
smontanaro committed Feb 21, 2024
commit a697a0f8a4256f19af5a52fff37178d80519fa04
2 changes: 1 addition & 1 deletion Doc/library/fcntl.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ The module defines the following functions:

If :const:`!LOCK_NB` is used and the lock cannot be acquired, an
:exc:`OSError` will be raised and the exception will have an *errno*
attribute set to :data:`~errno.EACCES` or :data:`~errno.EAGAIN` (depending on the
attribute set to :const:`~errno.EACCES` or :const:`~errno.EAGAIN` (depending on the
operating system; for portability, check for both values). On at least some
systems, :const:`!LOCK_EX` can only be used if the file descriptor refers to a
file opened for writing.
Expand Down
0