| Commit message (Expand) | Author | Age | Files | Lines |
* | gh-110038: KqueueSelector must count all read/write events (#110039) | Davide Rizzo | 2023-09-28 | 1 | -1/+6 |
|
|
* | gh-106751: Optimize _PolllikeSelector for many iteration case (gh-106884) | Pieter Eendebak | 2023-07-20 | 1 | -17/+9 |
|
|
* | gh-106751: Optimize SelectSelector.select() for many iteration case (gh-106879) | Dong-hee Na | 2023-07-19 | 1 | -10/+8 |
|
|
* | gh-106751: Optimize KqueueSelector.select() for many iteration case (gh-106864) | Dong-hee Na | 2023-07-19 | 1 | -8/+6 |
|
|
* | gh-106751: selectors: optimize EpollSelector.select() (#106754) | J. Nick Koston | 2023-07-18 | 1 | -8/+9 |
|
|
* | gh-106554: replace `_BaseSelectorImpl._key_from_fd` with `dict.get` (#106555) | J. Nick Koston | 2023-07-14 | 1 | -17/+4 |
|
|
* | gh-106664: selectors: add get() method to _SelectorMapping (#106665) | J. Nick Koston | 2023-07-13 | 1 | -5/+9 |
|
|
* | bpo-46583: remove unused `sys.version_info` check from `selectors` (GH-31023) | Nikita Sobolev | 2022-02-02 | 1 | -6/+5 |
|
|
* | bpo-41182 selector: use DefaultSelector based upon implementation (GH-21257) | Abhijeet Kasurde | 2020-07-23 | 1 | -4/+28 |
|
|
* | bpo-29255: Wait in KqueueSelector.select when no fds are registered (GH-19508) | Russell Davis | 2020-04-15 | 1 | -1/+4 |
|
|
* | bpo-30624 remaining bare except (#2108) | Giampaolo Rodola | 2017-06-12 | 1 | -1/+1 |
|
|
* | #30624 / selectors: use bare except clause in order to not leave the fd in a ... | Giampaolo Rodola | 2017-06-10 | 1 | -2/+2 |
|
|
* | bpo-30014: make poll-like selector's modify() method faster (#1030) | Giampaolo Rodola | 2017-06-09 | 1 | -1/+29 |
|
|
* | #30014: refactor poll-related classes (#1035) | Giampaolo Rodola | 2017-05-20 | 1 | -132/+84 |
|
|
* | bpo-30144: Import collections ABC from collections.abc rather than collection... | Serhiy Storchaka | 2017-04-24 | 1 | -1/+2 |
|
|
* | Issue #27759: Fix selectors incorrectly retain invalid file descriptors. | Yury Selivanov | 2016-09-15 | 1 | -9/+17 |
|
|
* | asyncio, selectors: Update to the upstream version | Yury Selivanov | 2016-03-02 | 1 | -2/+11 |
|
|
* | asyncio: Sync with github repo | Yury Selivanov | 2015-05-11 | 1 | -23/+26 |
|
|
* | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -6/+12 |
|\ |
|
| * | Issue #23865: close() methods in multiple modules now are idempotent and more | Serhiy Storchaka | 2015-04-10 | 1 | -4/+8 |
|
|
* | | Issue #23485: select.devpoll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-31 | 1 | -4/+3 |
|
|
* | | Issue #23485: select.kqueue.control() is now retried when interrupted by a si... | Victor Stinner | 2015-03-31 | 1 | -4/+2 |
|
|
* | | Issue #23485: select.epoll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-30 | 1 | -4/+2 |
|
|
* | | Issue #23485: select.poll.poll() is now retried when interrupted by a signal | Victor Stinner | 2015-03-30 | 1 | -4/+3 |
|
|
* | | Issue #23485: select.select() is now retried automatically with the recomputed | Victor Stinner | 2015-03-30 | 1 | -4/+1 |
|
|
* | | Issue #23209, #23225: selectors.BaseSelector.get_key() now raises a | Victor Stinner | 2015-01-13 | 1 | -0/+3 |
|\ \
| |/ |
|
| * | Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal | Victor Stinner | 2015-01-13 | 1 | -0/+3 |
|
|
* | | (Merge 3.4) Issue #23209: Revert change on selectors, test_selectors failed. | Victor Stinner | 2015-01-09 | 1 | -1/+0 |
|\ \
| |/ |
|
| * | Issue #23209: Revert change on selectors, test_selectors failed. | Victor Stinner | 2015-01-09 | 1 | -1/+0 |
|
|
* | | Merge 3.4 (asyncio, selectors) | Victor Stinner | 2015-01-09 | 1 | -0/+1 |
|\ \
| |/ |
|
| * | Issue #23209: Break some reference cycles in asyncio. Patch written by Martin | Victor Stinner | 2015-01-09 | 1 | -0/+1 |
|
|
* | | selectors: truncate to 80 characters | Victor Stinner | 2015-01-08 | 1 | -1/+2 |
|
|
* | | selectors: Fix typo in comment. | Yury Selivanov | 2014-12-08 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | selectors: Fix typo in comment. | Yury Selivanov | 2014-12-08 | 1 | -1/+1 |
|
|
* | | selectors: Make sure EpollSelecrtor.select() works when no FD is registered. | Yury Selivanov | 2014-12-08 | 1 | -1/+6 |
|\ \
| |/ |
|
| * | selectors: Make sure EpollSelecrtor.select() works when no FD is registered. | Yury Selivanov | 2014-12-08 | 1 | -1/+6 |
|
|
| * | asyncio: remove unused imports and unused variables noticed by pyflakes | Victor Stinner | 2014-02-20 | 1 | -2/+1 |
|
|
| * | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 1 | -1/+1 |
|
|
* | | Fix issue 18931: selectors module now supports /dev/poll on Solaris. | Giampaolo Rodola' | 2014-03-20 | 1 | -1/+61 |
|
|
* | | asyncio: remove unused imports and unused variables noticed by pyflakes | Victor Stinner | 2014-02-20 | 1 | -2/+1 |
|
|
* | | asyncio: Fix spelling and typos. | Yury Selivanov | 2014-02-19 | 1 | -1/+1 |
|/ |
|
* | Issue #20505: Remove resolution and _granularity from selectors and asyncio | Victor Stinner | 2014-02-07 | 1 | -21/+0 |
|
|
* | Issue #20455: math.ceil() returns an int in Python 3, no need to cast the | Victor Stinner | 2014-01-31 | 1 | -1/+1 |
|
|
* | Issue #20452: select and selectors round (again) timeout away from zero for | Victor Stinner | 2014-01-31 | 1 | -2/+8 |
|
|
* | Issue #20311: selectors: Add a resolution attribute to BaseSelector. | Victor Stinner | 2014-01-25 | 1 | -1/+22 |
|
|
* | Issue #20311: Revert e042ea77a152 and 7ce7295393c2, PollSelector.select() and | Victor Stinner | 2014-01-25 | 1 | -8/+2 |
|
|
* | Issue #20311: EpollSelector now also rounds the timeout towards zero, as | Victor Stinner | 2014-01-21 | 1 | -1/+8 |
|
|
* | selectors: add a comment to explain why and how poll timeout is rounded | Victor Stinner | 2014-01-21 | 1 | -2/+4 |
|
|
* | Issue #20311: selector.PollSelector.select() now rounds the timeout away from | Victor Stinner | 2014-01-21 | 1 | -1/+7 |
|
|
* | Silently ignore unregistering closed files. Fixes issue 19876. With docs and ... | Guido van Rossum | 2013-12-07 | 1 | -9/+65 |
|
|