Issue #8865: Concurrent invocation of select.poll.poll() now raises a
RuntimeError exception. Patch by Christian Schubert.
diff --git a/Misc/ACKS b/Misc/ACKS
index 8aba36e..c6c2e2f 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -912,6 +912,7 @@
Arvin Schnell
Scott Schram
Chad J. Schroeder
+Christian Schubert
Sam Schulenburg
Stefan Schwarzer
Dietmar Schwertberger
diff --git a/Misc/NEWS b/Misc/NEWS
index 9ee4cfe..4c39da3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -32,6 +32,9 @@
Library
-------
+- Issue #8865: Concurrent invocation of select.poll.poll() now raises a
+ RuntimeError exception. Patch by Christian Schubert.
+
- Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit
platforms. Patch by Yogesh Chaudhari.