summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorGregory P. Smith <greg@krypto.org>2012-07-16 06:44:49 (GMT)
committerGregory P. Smith <greg@krypto.org>2012-07-16 06:44:49 (GMT)
commit4866266bf41e6727502b56c00adab18a4b37d9c1 (patch)
treeceaf133db64a10654a9a9d88acc6adb16759ca58 /Misc
parent2a61c451f2e2c99230580b80444848185db8d696 (diff)
parentdad5711677f965a62713bfc9a34599c8f44572e8 (diff)
downloadcpython-4866266bf41e6727502b56c00adab18a4b37d9c1.zip
cpython-4866266bf41e6727502b56c00adab18a4b37d9c1.tar.gz
cpython-4866266bf41e6727502b56c00adab18a4b37d9c1.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 a35fd74..b671d61 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -451,6 +451,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 9ebf65a..11732dc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -41,6 +41,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 #15343: pkgutil now includes an iter_importer_modules implementation