diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-07-11 02:04:09 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-07-11 02:04:09 (GMT) |
commit | 93ab5fa1916d745aa817ed47297725826f4ec62c (patch) | |
tree | 1aee6c9cca20ccb1c194ec318449847b20598044 /Misc | |
parent | 06c68b800ca3e31d2551923083ce8294ab94cb24 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |