Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a test for select.kevent. (#4349) | Serhiy Storchaka | 2017-11-09 | 1 | -3/+6 |
| | | | select.kevent objects are now comparable with other objects in Python 2. | ||||
* | [2.7] bpo-30058: Fixed buffer overflow in select.kqueue.control(). ↵ | Serhiy Storchaka | 2017-10-12 | 1 | -0/+24 |
| | | | | | (GH-1095). (#3976) (cherry picked from commit de072100775cc29e6cd93a75466cecbd1086f258) | ||||
* | #11973: add test for previously fixed kevent signed/unsigned bug. | R David Murray | 2014-10-12 | 1 | -0/+25 |
| | | | | Patch by David Naylor. | ||||
* | Issue #18325: Fix a test_kqueue failure on OpenBSD: kevent's data and event | Charles-François Natali | 2013-08-02 | 1 | -3/+3 |
| | | | | members are integers. | ||||
* | Issue #6419: Fix a test_kqueue failure on some BSD flavors. | Charles-Francois Natali | 2013-03-31 | 1 | -22/+13 |
| | |||||
* | Merged revisions 86596 via svnmerge from | Ezio Melotti | 2010-11-21 | 1 | -5/+5 |
| | | | | | | | | | | 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. ........ | ||||
* | Issue #7211: Allow 64-bit values for the `ident` and `data` fields of kevent | Antoine Pitrou | 2009-11-04 | 1 | -0/+11 |
| | | | | | | objects on 64-bit systems. Patch by Michael Broghton. I will revert this checkin if it causes problems on our BSD buildbots. | ||||
* | #5910: fix kqueue for calls with more than one event. | Georg Brandl | 2009-07-16 | 1 | -0/+16 |
| | |||||
* | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 1 | -5/+5 |
| | |||||
* | remove test_support.TestSkipped and just use unittest.SkipTest | Benjamin Peterson | 2009-03-26 | 1 | -1/+1 |
| | |||||
* | Issue #5025: Fix occasional test_kqueue failure on OS X. | Mark Dickinson | 2009-01-24 | 1 | -3/+6 |
| | |||||
* | Applied patch #1657 epoll and kqueue wrappers for the select module | Christian Heimes | 2008-03-21 | 1 | -0/+166 |
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 |