summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorDavid CARLIER <devnexen@gmail.com>2022-01-03 13:01:04 (GMT)
committerGitHub <noreply@github.com>2022-01-03 13:01:04 (GMT)
commitc960b191b8999a9455bb4b2c50dc224d06fee80c (patch)
tree5ce812dca3b2e7b19b8ddf62b9df22399f28bc1a /Doc
parent549e62827262264cda30455e10e315602129da72 (diff)
downloadcpython-c960b191b8999a9455bb4b2c50dc224d06fee80c.zip
cpython-c960b191b8999a9455bb4b2c50dc224d06fee80c.tar.gz
cpython-c960b191b8999a9455bb4b2c50dc224d06fee80c.tar.bz2
bpo-46222: posixmodule sendfile FreeBSD's constants updates. (GH-30327)
* posixodule sendfile FreeBSD's constants updates. * 📜🤖 Added by blurb_it. Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com>
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/os.rst9
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 8e11c69..3e8fc54 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -1429,6 +1429,15 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
.. versionadded:: 3.3
+.. data:: SF_NOCACHE
+
+ Parameter to the :func:`sendfile` function, if the implementation supports
+ it. The data won't be cached in the virtual memory and will be freed afterwards.
+
+ .. availability:: Unix.
+
+ .. versionadded:: 3.11
+
.. function:: splice(src, dst, count, offset_src=None, offset_dst=None)