summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-03-21 23:49:44 (GMT)
committerChristian Heimes <christian@cheimes.de>2008-03-21 23:49:44 (GMT)
commit0e9ab5f2f0f907b57c70557e21633ce8c341d1d1 (patch)
treecff563d889c8bca44a7214739706e3674d402d26 /Misc
parent5f79446af07b8bd7821ca4aacc96895c811f2733 (diff)
downloadcpython-0e9ab5f2f0f907b57c70557e21633ce8c341d1d1.zip
cpython-0e9ab5f2f0f907b57c70557e21633ce8c341d1d1.tar.gz
cpython-0e9ab5f2f0f907b57c70557e21633ce8c341d1d1.tar.bz2
Applied patch #1657 epoll and kqueue wrappers for the select module
The patch adds wrappers for the Linux epoll syscalls and the BSD kqueue syscalls. Thanks to Thomas Herve and the Twisted people for their support and help. TODO: Finish documentation documentation
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 615effc..62803ff 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -1363,6 +1363,8 @@ Library
Extension Modules
-----------------
+- Patch #1657: added select.epoll and select.kqueue
+
- Patch #1506171: added operator.methodcaller().
- Patch #1826: operator.attrgetter() now supports dotted attribute paths.