| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-29883: Asyncio proactor udp (GH-13440) | Andrew Svetlov | 2019-05-28 | 1 | -0/+46 |
|
|
* | bpo-36889: Merge asyncio streams (GH-13251) | Andrew Svetlov | 2019-05-27 | 1 | -1/+1 |
|
|
* | bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528) | Yury Selivanov | 2019-05-27 | 1 | -1/+3 |
|
|
* | bpo-11555: Enhance IocpProactor.close() log again (GH-11563) | Victor Stinner | 2019-01-15 | 1 | -3/+2 |
|
|
* | bpo-34323: Enhance IocpProactor.close() log (GH-11555) | Victor Stinner | 2019-01-15 | 1 | -3/+15 |
|
|
* | IocpProactor: prevent modification if closed (GH-11494) | Victor Stinner | 2019-01-10 | 1 | -6/+22 |
|
|
* | bpo-23057: Use 'raise' to emulate ctrl-c in proactor tests (#11274) | Vladimir Matveev | 2019-01-05 | 1 | -0/+5 |
|
|
* | bpo-23057: add loop self socket as wakeup fd for signals (#11135) | Vladimir Matveev | 2018-12-18 | 1 | -0/+10 |
|
|
* | bpo-34687: Make asynico use ProactorEventLoop by default (GH-9538) | Victor Stinner | 2018-09-25 | 1 | -1/+1 |
|
|
* | bpo-34622: Extract asyncio exceptions into a separate module (GH-9141) | Andrew Svetlov | 2018-09-11 | 1 | -2/+3 |
|
|
* | bpo-33792: Add selector and proactor windows policies (GH-7487) | Yury Selivanov | 2018-06-08 | 1 | -3/+8 |
|
|
* | bpo-32622: Native sendfile on windows (#5565) | Andrew Svetlov | 2018-02-25 | 1 | -0/+22 |
|
|
* | bpo-32622: Implement loop.sendfile() (#5271) | Andrew Svetlov | 2018-01-27 | 1 | -3/+6 |
|
|
* | Fix couple typos (#4839) | Andrew Svetlov | 2017-12-13 | 1 | -1/+1 |
|
|
* | bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) | Yury Selivanov | 2017-12-10 | 1 | -9/+10 |
|
|
* | bpo-32193: Convert asyncio to async/await usage (#4753) | Andrew Svetlov | 2017-12-08 | 1 | -27/+14 |
|
|
* | bpo-32154: Remove asyncio.selectors (#4605) | Victor Stinner | 2017-11-28 | 1 | -1/+1 |
|
|
* | asyncio: use directly socket.socketpair() (#4597) | Victor Stinner | 2017-11-28 | 1 | -6/+0 |
|
|
* | bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051) | Antoine Pitrou | 2017-10-19 | 1 | -0/+22 |
|
|
* | Issue #28448: Fix C implemented asyncio.Future didn't work on Windows | INADA Naoki | 2016-10-21 | 1 | -2/+7 |
|
|
* | Issue #27041: asyncio: Add loop.create_future method | Yury Selivanov | 2016-05-16 | 1 | -2/+2 |
|
|
* | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 1 | -1/+1 |
|
|
* | asyncio: async() function is deprecated in favour of ensure_future(). | Yury Selivanov | 2015-05-11 | 1 | -1/+1 |
|
|
* | Issue #23353, asyncio: Workaround CPython bug #23353 | Victor Stinner | 2015-02-02 | 1 | -2/+9 |
|
|
* | Issue #23347, asyncio: Make BaseSubprocessTransport.wait() private | Victor Stinner | 2015-01-29 | 1 | -1/+1 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2015-01-29 | 1 | -2/+5 |
|
|
* | asyncio, Tulip issue 204: Fix IocpProactor.recv() | Victor Stinner | 2015-01-26 | 1 | -7/+13 |
|
|
* | Issue #23095, asyncio: Fix _WaitHandleFuture.cancel() | Victor Stinner | 2015-01-26 | 1 | -20/+17 |
|
|
* | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() as a coroutine | Victor Stinner | 2015-01-26 | 1 | -21/+18 |
|
|
* | asyncio: Fix ProactorEventLoop.start_serving_pipe() | Victor Stinner | 2015-01-26 | 1 | -1/+13 |
|
|
* | Issue #23293, asyncio: Cleanup IocpProactor.close() | Victor Stinner | 2015-01-26 | 1 | -6/+1 |
|
|
* | asyncio, Tulip issue 204: Fix IocpProactor.accept_pipe() | Victor Stinner | 2015-01-22 | 1 | -24/+17 |
|
|
* | Issue #23293, asyncio: Rewrite IocpProactor.connect_pipe() | Victor Stinner | 2015-01-22 | 1 | -17/+26 |
|
|
* | asyncio: IocpProactor.close() doesn't cancel anymore futures which are already | Victor Stinner | 2015-01-22 | 1 | -3/+7 |
|
|
* | Issue #23095, asyncio: IocpProactor.close() must not cancel pending | Victor Stinner | 2015-01-21 | 1 | -0/+6 |
|
|
* | Issue #23095, asyncio: Rewrite _WaitHandleFuture.cancel() | Victor Stinner | 2015-01-21 | 1 | -34/+134 |
|
|
* | asyncio: Close the transport on subprocess creation failure | Victor Stinner | 2015-01-15 | 1 | -1/+6 |
|
|
* | asyncio: Truncate to 80 columns | Victor Stinner | 2015-01-08 | 1 | -1/+2 |
|
|
* | asyncio: IocpProactor.wait_for_handle() test now also checks the result of the | Victor Stinner | 2014-12-19 | 1 | -0/+5 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-12-18 | 1 | -1/+1 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-08-25 | 1 | -6/+25 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-29 | 1 | -30/+54 |
|
|
* | asyncio, tulip issue 196: ProactorIocp._register() now registers the overlapped | Victor Stinner | 2014-07-27 | 1 | -15/+38 |
|
|
* | Tulip issue 196: _OverlappedFuture.set_result() now clears its reference to the | Victor Stinner | 2014-07-25 | 1 | -5/+11 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-25 | 1 | -0/+5 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-25 | 1 | -21/+50 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-24 | 1 | -20/+46 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-12 | 1 | -0/+12 |
|
|
* | asyncio: sync with Tulip, add a new asyncio.coroutines module | Victor Stinner | 2014-06-28 | 1 | -5/+6 |
|
|
* | asyncio/windows_events.py: use more revelant names to overlapped callbacks | Victor Stinner | 2014-02-26 | 1 | -10/+10 |
|
|