summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2003-09-10 19:37:42 (GMT)
committerBrett Cannon <bcannon@gmail.com>2003-09-10 19:37:42 (GMT)
commit62dba4c2775adfb5a5a97ca012a3ab00c4e28597 (patch)
tree7f3c3e4ff4ab305aa08c547b660cf679bc3bf19f /Misc
parentfd4fa8801a75919dd711e9f750b8a405a639f2c2 (diff)
downloadcpython-62dba4c2775adfb5a5a97ca012a3ab00c4e28597.zip
cpython-62dba4c2775adfb5a5a97ca012a3ab00c4e28597.tar.gz
cpython-62dba4c2775adfb5a5a97ca012a3ab00c4e28597.tar.bz2
select.select() now accepts a sequence (as defined by PySequence_Fast()) for
its first three arguments. Closes RFE #798046 .
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1208d41..5cf8d72 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,6 +24,8 @@ Core and builtins
Extension modules
-----------------
+- select.select() now accepts sequences for its first three arguments.
+
- cStringIO now supports the f.closed attribute.
- The signal module now exposes SIGRTMIN and SIGRTMAX (if available).