diff options
author | Pablo Galindo <Pablogsal@gmail.com> | 2020-11-17 19:57:03 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-17 19:57:03 (GMT) |
commit | e59958f8b6815f51f6c33b6a613cf8467ca18a11 (patch) | |
tree | fb5b27d881d0ee43ed08a53ca2a9498a3fe0ede4 /Doc | |
parent | 266b462238bddec0213effad3650f19c56511e9f (diff) | |
download | cpython-e59958f8b6815f51f6c33b6a613cf8467ca18a11.zip cpython-e59958f8b6815f51f6c33b6a613cf8467ca18a11.tar.gz cpython-e59958f8b6815f51f6c33b6a613cf8467ca18a11.tar.bz2 |
bpo-41625: Specify that Linux >= 2.6.17 *and* glibc >= 2.5 are requir… (GH-23351)
…ed for splice()
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/os.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/os.rst b/Doc/library/os.rst index 648c52b..a4c5fbb 100644 --- a/Doc/library/os.rst +++ b/Doc/library/os.rst @@ -1441,7 +1441,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo make sense to block because there are no writers connected to the write end of the pipe. - .. availability:: Linux kernel >= 2.6.17 or glibc >= 2.5 + .. availability:: Linux kernel >= 2.6.17 and glibc >= 2.5 .. versionadded:: 3.10 |