diff options
author | Christian Heimes <christian@python.org> | 2019-05-31 16:32:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-31 16:32:33 (GMT) |
commit | 8cbb5b6625268400d6e9092b75b06d6f90398dc9 (patch) | |
tree | 20053207793db2b39580b721c848097e5f2fae14 /Doc/library | |
parent | ffed76b6fc4d7dd0244b662d6e5738eb496d9def (diff) | |
download | cpython-8cbb5b6625268400d6e9092b75b06d6f90398dc9.zip cpython-8cbb5b6625268400d6e9092b75b06d6f90398dc9.tar.gz cpython-8cbb5b6625268400d6e9092b75b06d6f90398dc9.tar.bz2 |
bpo-26835: Add file sealing constants to fcntl (GH-13694)
Co-authored-by: nanjekyejoannah <nanjekyejoannah@gmail.com>
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/fcntl.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/library/fcntl.rst b/Doc/library/fcntl.rst index 88112f6..2db9674 100644 --- a/Doc/library/fcntl.rst +++ b/Doc/library/fcntl.rst @@ -28,6 +28,10 @@ descriptor. Operations in this module used to raise an :exc:`IOError` where they now raise an :exc:`OSError`. +.. versionchanged:: 3.8 + The fcntl module now contains ``F_ADD_SEALS``, ``F_GET_SEALS``, and + ``F_SEAL_*`` constants for sealing of :func:`os.memfd_create` file + descriptors. The module defines the following functions: |