diff options
author | Malcolm Smith <smith@chaquo.com> | 2024-09-25 14:23:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-25 14:23:30 (GMT) |
commit | c58c572a65eb5b93d054e779df289e975a0b9864 (patch) | |
tree | 19f4a490c9b9e4a7810b3d9701e325e507ee273a /Doc | |
parent | 461c12b43870d51ea29eae7b0969b20565d50eb6 (diff) | |
download | cpython-c58c572a65eb5b93d054e779df289e975a0b9864.zip cpython-c58c572a65eb5b93d054e779df289e975a0b9864.tar.gz cpython-c58c572a65eb5b93d054e779df289e975a0b9864.tar.bz2 |
gh-123014: Disable pidfd API on older Android versions (#124458)
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 2 | ||||
-rw-r--r-- | Doc/library/signal.rst | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index cd7ae7b..33dd58f 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -4602,7 +4602,7 @@ written in Python, such as a mail server's external command delivery program. See the :manpage:`pidfd_open(2)` man page for more details. - .. availability:: Linux >= 5.3 + .. availability:: Linux >= 5.3, Android >= :func:`build-time <sys.getandroidapilevel>` API level 31 .. versionadded:: 3.9 .. data:: PIDFD_NONBLOCK diff --git a/Doc/library/signal.rst b/Doc/library/signal.rst index 79c4948..17fcb2b 100644 --- a/Doc/library/signal.rst +++ b/Doc/library/signal.rst @@ -411,7 +411,7 @@ The :mod:`signal` module defines the following functions: See the :manpage:`pidfd_send_signal(2)` man page for more information. - .. availability:: Linux >= 5.1 + .. availability:: Linux >= 5.1, Android >= :func:`build-time <sys.getandroidapilevel>` API level 31 .. versionadded:: 3.9 |