summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2016-07-19 18:09:26 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2016-07-19 18:09:26 (GMT)
commitfe8d9666575284c10b6bf803b9c446523da1d23a (patch)
tree4b982695184f9f5f7d073d6a12f7c2e5a0f3f190 /Misc
parenta1ea9c813f3adbab63392f6bfcb6a729ff272515 (diff)
downloadcpython-fe8d9666575284c10b6bf803b9c446523da1d23a.zip
cpython-fe8d9666575284c10b6bf803b9c446523da1d23a.tar.gz
cpython-fe8d9666575284c10b6bf803b9c446523da1d23a.tar.bz2
Issue #27567: Expose the POLLRDHUP constant in the select module
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 803bef0..16d4476 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -28,7 +28,8 @@ Library
- Expose the EPOLLEXCLUSIVE constant (when it is defined) in the select module.
-- Issue #27567: Expose the EPOLLRDHUP constant in the select module.
+- Issue #27567: Expose the EPOLLRDHUP and POLLRDHUP constants in the select
+ module.
- Issue #1621: Avoid signed int negation overflow in the "audioop" module.