summaryrefslogtreecommitdiff
path: root/Lib/selectors.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #20505: Remove resolution and _granularity from selectors and asyncioVictor Stinner2014-02-071-21/+0
* Issue #20455: math.ceil() returns an int in Python 3, no need to cast theVictor Stinner2014-01-311-1/+1
* Issue #20452: select and selectors round (again) timeout away from zero forVictor Stinner2014-01-311-2/+8
* Issue #20311: selectors: Add a resolution attribute to BaseSelector.Victor Stinner2014-01-251-1/+22
* Issue #20311: Revert e042ea77a152 and 7ce7295393c2, PollSelector.select() andVictor Stinner2014-01-251-8/+2
* Issue #20311: EpollSelector now also rounds the timeout towards zero, asVictor Stinner2014-01-211-1/+8
* selectors: add a comment to explain why and how poll timeout is roundedVictor Stinner2014-01-211-2/+4
* Issue #20311: selector.PollSelector.select() now rounds the timeout away fromVictor Stinner2014-01-211-1/+7
* Silently ignore unregistering closed files. Fixes issue 19876. With docs and ...Guido van Rossum2013-12-071-9/+65
* Issue #19842: Refactor BaseSelector to make it an actual usable ABC.Charles-François Natali2013-12-011-44/+68
* selectors: use a single return.Charles-François Natali2013-11-181-4/+2
* Optimize BaseSelector.modify(). Patch by Arnaud Faure.Guido van Rossum2013-11-071-3/+6
* Close resources owned by subclass before calling super().close().Guido van Rossum2013-10-311-2/+2
* Issue #19172: Add a get_map() method to selectors.Charles-François Natali2013-10-301-1/+26
* Issue #16853: Add new selectors module.Charles-François Natali2013-09-041-0/+405