summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_epoll.py
Commit message (Collapse)AuthorAgeFilesLines
* Merged revisions 86596 via svnmerge fromEzio Melotti2010-11-211-4/+4
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
* Remove unused imports in test modules.Georg Brandl2010-02-071-2/+0
|
* convert usage of fail* to assert*Benjamin Peterson2009-06-301-10/+10
|
* Issue 3848: document the fact that epoll register raises an IOError ifR. David Murray2009-05-311-0/+28
| | | | | an fd is registered twice, and add some additional epoll tests. Patch by Christian Heimes.
* remove test_support.TestSkipped and just use unittest.SkipTestBenjamin Peterson2009-03-261-2/+2
|
* Skip the epoll test if epoll() does not workNeal Norwitz2008-03-231-0/+6
|
* Applied patch #1657 epoll and kqueue wrappers for the select moduleChristian Heimes2008-03-211-0/+189
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