summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-07-16 06:42:26 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-07-16 06:42:26 (GMT)
commitdad5711677f965a62713bfc9a34599c8f44572e8 (patch)
tree336b01e8761c7ff2baecefa3cc67f49a6e3a8245 /Misc
parent4774946c3b7564b4a1c93da4ba4dba443a36a708 (diff)
downloadcpython-dad5711677f965a62713bfc9a34599c8f44572e8.zip
cpython-dad5711677f965a62713bfc9a34599c8f44572e8.tar.gz
cpython-dad5711677f965a62713bfc9a34599c8f44572e8.tar.bz2
Fixes Issue #14635: telnetlib will use poll() rather than select() when possible
to avoid failing due to the select() file descriptor limit.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 26fe1d0..3bf81a2 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -410,6 +410,7 @@ Chris Hoffman
Albert Hofkamp
Tomas Hoger
Jonathan Hogg
+Akintayo Holder
Gerrit Holl
Shane Holloway
Rune Holm
diff --git a/Misc/NEWS b/Misc/NEWS
index 74e4038..1d5353a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -87,6 +87,9 @@ Core and Builtins
Library
-------
+- Issue #14635: telnetlib will use poll() rather than select() when possible
+ to avoid failing due to the select() file descriptor limit.
+
- Issue #15180: Clarify posixpath.join() error message when mixing str & bytes
- Issue #15230: runpy.run_path now correctly sets __package__ as described