summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_devpoll.py
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-1/+10
| | | | | are now created non-inheritable; add functions os.get/set_inheritable(), os.get/set_handle_inheritable() and socket.socket.get/set_inheritable().
* Close #18794: Add a fileno() method and a closed attribute to select.devpollVictor Stinner2013-08-211-0/+25
| | | | | | objects. Add also tests on fileno() method and closed attribute of select.epoll and select.kqueue.
* Clean up the messages used by some tests.Brett Cannon2012-11-141-1/+1
|
* Issue #6397: Support '/dev/poll' polling objects in select module, under ↵Jesus Cea2011-11-141-0/+94
Solaris & derivatives.