summaryrefslogtreecommitdiffstats
path: root/Doc/library/fcntl.rst
diff options
context:
space:
mode:
authorChristian Heimes <christian@python.org>2022-08-02 19:00:41 (GMT)
committerGitHub <noreply@github.com>2022-08-02 19:00:41 (GMT)
commite3b6ff19aaa318a813130ba9ad2ab0a332f27feb (patch)
treef67037e53dcc5f0249e84aece4fac7d53d3946f5 /Doc/library/fcntl.rst
parent75a6441718dcbc65d993c9544e67e25bef120e82 (diff)
downloadcpython-e3b6ff19aaa318a813130ba9ad2ab0a332f27feb.zip
cpython-e3b6ff19aaa318a813130ba9ad2ab0a332f27feb.tar.gz
cpython-e3b6ff19aaa318a813130ba9ad2ab0a332f27feb.tar.bz2
gh-95451: Update docs for wasm32-emscripten and -wasi platforms (GH-95452)
Co-authored-by: Éric <merwok@netwok.org> Co-authored-by: Michael Droettboom <mdboom@gmail.com> Co-authored-by: Ezio Melotti <ezio.melotti@gmail.com> Co-authored-by: CAM Gerlach <CAM.Gerlach@Gerlach.CAM>
Diffstat (limited to 'Doc/library/fcntl.rst')
-rw-r--r--Doc/library/fcntl.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Doc/library/fcntl.rst b/Doc/library/fcntl.rst
index 784e707..997c7ea 100644
--- a/Doc/library/fcntl.rst
+++ b/Doc/library/fcntl.rst
@@ -18,6 +18,8 @@ interface to the :c:func:`fcntl` and :c:func:`ioctl` Unix routines. For a
complete description of these calls, see :manpage:`fcntl(2)` and
:manpage:`ioctl(2)` Unix manual pages.
+.. include:: ../includes/wasm-notavail.rst
+
All functions in this module take a file descriptor *fd* as their first
argument. This can be an integer file descriptor, such as returned by
``sys.stdin.fileno()``, or an :class:`io.IOBase` object, such as ``sys.stdin``