summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-07-11 02:04:09 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-07-11 02:04:09 (GMT)
commit93ab5fa1916d745aa817ed47297725826f4ec62c (patch)
tree1aee6c9cca20ccb1c194ec318449847b20598044 /Misc
parent06c68b800ca3e31d2551923083ce8294ab94cb24 (diff)
downloadcpython-93ab5fa1916d745aa817ed47297725826f4ec62c.zip
cpython-93ab5fa1916d745aa817ed47297725826f4ec62c.tar.gz
cpython-93ab5fa1916d745aa817ed47297725826f4ec62c.tar.bz2
#1494314: Fix a regression with high-numbered sockets in 2.4.3. This
means that select() on sockets > FD_SETSIZE (typically 1024) work again. The patch makes sockets use poll() internally where available.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fd6c17c..080f4a7 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -105,6 +105,10 @@ Library
Extension Modules
-----------------
+- #1494314: Fix a regression with high-numbered sockets in 2.4.3. This
+ means that select() on sockets > FD_SETSIZE (typically 1024) work again.
+ The patch makes sockets use poll() internally where available.
+
- Assigning None to pointer type fields in ctypes structures possible
overwrote the wrong fields, this is fixed now.