[Python-checkins] bpo-35497: add versionadded tag for EPOLLEXCLUSIVE (GH-11162)

Xiang Zhang webhook-mailer at python.org
Wed Dec 19 06:59:57 EST 2018


https://github.com/python/cpython/commit/92330c0b6d6c253c41a133cc50caea4853c7e311
commit: 92330c0b6d6c253c41a133cc50caea4853c7e311
branch: master
author: Manjusaka <lizheao940510 at gmail.com>
committer: Xiang Zhang <angwerzx at 126.com>
date: 2018-12-19T19:59:52+08:00
summary:

bpo-35497: add versionadded tag for EPOLLEXCLUSIVE (GH-11162)

files:
M Doc/library/select.rst
M Misc/ACKS

diff --git a/Doc/library/select.rst b/Doc/library/select.rst
index f5b25db774f6..733a91e20b68 100644
--- a/Doc/library/select.rst
+++ b/Doc/library/select.rst
@@ -317,6 +317,9 @@ Edge and Level Trigger Polling (epoll) Objects
    | :const:`EPOLLMSG`       | Ignored.                                      |
    +-------------------------+-----------------------------------------------+
 
+   .. versionadded:: 3.6
+      :const:`EPOLLEXCLUSIVE` was added.  It's only supported by Linux Kernel 4.5
+      or later.
 
 .. method:: epoll.close()
 
diff --git a/Misc/ACKS b/Misc/ACKS
index 3e5fa0a2facc..63df5df4cbef 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1843,3 +1843,4 @@ Jelle Zijlstra
 Gennadiy Zlobin
 Doug Zongker
 Peter Åstrand
+Zheao Li



More information about the Python-checkins mailing list