| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321) | Yury Selivanov | 2018-06-04 | 1 | -3/+2 |
|
|
* | Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (#7232) | Yury Selivanov | 2018-05-30 | 1 | -7/+0 |
|
|
* | bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208) | Yury Selivanov | 2018-05-29 | 1 | -0/+7 |
|
|
* | Fix senfile typo (#6265) | Sam Dunster | 2018-03-28 | 1 | -1/+1 |
|
|
* | Implement TimerHandle.when() (#5473) | Andrew Svetlov | 2018-02-01 | 1 | -0/+8 |
|
|
* | bpo-32622: Implement loop.sendfile() (#5271) | Andrew Svetlov | 2018-01-27 | 1 | -0/+8 |
|
|
* | bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312) | Yury Selivanov | 2018-01-25 | 1 | -5/+43 |
|
|
* | bpo-32436: Implement PEP 567 (#5027) | Yury Selivanov | 2018-01-23 | 1 | -5/+10 |
|
|
* | bpo-32410: Make SendfileNotAvailableError exception public (#5243) | Andrew Svetlov | 2018-01-19 | 1 | -1/+9 |
|
|
* | bpo-32410: Implement loop.sock_sendfile() (#4976) | Andrew Svetlov | 2018-01-16 | 1 | -0/+4 |
|
|
* | bpo-32418: Postfix, raise NotImplementdError and close resources in tests (#5... | Andrew Svetlov | 2017-12-30 | 1 | -3/+3 |
|
|
* | bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997) | Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) | 2017-12-30 | 1 | -0/+4 |
|
|
* | bpo-23749: Implement loop.start_tls() (#5039) | Yury Selivanov | 2017-12-30 | 1 | -0/+11 |
|
|
* | bpo-29970: Make ssh_handshake_timeout None by default (#4939) | Andrew Svetlov | 2017-12-20 | 1 | -5/+4 |
|
|
* | bpo-29970: Add timeout for SSL handshake in asyncio | Neil Aspinall | 2017-12-19 | 1 | -15/+31 |
|
|
* | bpo-32311: Implement asyncio.create_task() shortcut (#4848) | Andrew Svetlov | 2017-12-15 | 1 | -76/+7 |
|
|
* | bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827) | Yury Selivanov | 2017-12-13 | 1 | -0/+27 |
|
|
* | Add asyncio.get_running_loop() function. (#4782) | Yury Selivanov | 2017-12-11 | 1 | -1/+13 |
|
|
* | bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775) | Yury Selivanov | 2017-12-10 | 1 | -20/+23 |
|
|
* | bpo-32193: Convert asyncio to async/await usage (#4753) | Andrew Svetlov | 2017-12-08 | 1 | -35/+41 |
|
|
* | bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be... | Yury Selivanov | 2017-11-20 | 1 | -2/+2 |
|
|
* | bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314) | Antoine Pitrou | 2017-11-07 | 1 | -1/+20 |
|
|
* | Add asyncio.Handle.cancelled() method (#2388) | Marat Sharafutdinov | 2017-11-07 | 1 | -0/+3 |
|
|
* | bpo-31245: Asyncio unix socket datagram (#3164) | Quentin Dawans | 2017-10-30 | 1 | -2/+2 |
|
|
* | bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051) | Antoine Pitrou | 2017-10-19 | 1 | -0/+3 |
|
|
* | bpo-31350: Optimize get_event_loop and _get_running_loop (#3347) | jimmylai | 2017-09-06 | 1 | -6/+4 |
|
|
* | bpo-29617: Remove Python 3.3 support from asyncio (GH-232) | INADA Naoki | 2017-04-25 | 1 | -7/+2 |
|
|
* | asyncio: Optimize _get_running_loop() to call getpid() only when there's a loop | Yury Selivanov | 2017-03-03 | 1 | -2/+3 |
|
|
* | bpo-29703: asyncio: Fix creating new event loops in child processes. (#404) | Yury Selivanov | 2017-03-03 | 1 | -1/+7 |
|
|
* | Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop() | Yury Selivanov | 2016-11-08 | 1 | -0/+1 |
|
|
* | Issue #28613: Fix get_event_loop() to return the current loop | Yury Selivanov | 2016-11-04 | 1 | -1/+35 |
|
|
* | Issue #28600: Optimize loop.call_soon(). | Yury Selivanov | 2016-11-03 | 1 | -1/+0 |
|
|
* | Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. | Yury Selivanov | 2016-09-15 | 1 | -13/+14 |
|
|
* | asyncio: Sync with the upstream | Yury Selivanov | 2016-09-15 | 1 | -0/+4 |
|
|
* | Issue #27041: asyncio: Add loop.create_future method | Yury Selivanov | 2016-05-16 | 1 | -0/+3 |
|
|
* | Issue #27040: Add loop.get_exception_handler method | Yury Selivanov | 2016-05-16 | 1 | -0/+3 |
|
|
* | Issue #23972: updates to asyncio datagram API. By Chris Laws. | Guido van Rossum | 2015-10-05 | 1 | -2/+38 |
|
|
* | Issue #23630, asyncio: host parameter of loop.create_server() can now be a | Victor Stinner | 2015-09-21 | 1 | -1/+2 |
|
|
* | asyncio: Add asyncio.compat module | Victor Stinner | 2015-07-25 | 1 | -4/+3 |
|
|
* | Sync asyncio changes from the main repo. | Yury Selivanov | 2015-05-11 | 1 | -1/+9 |
|
|
* | Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho... | Guido van Rossum | 2015-05-03 | 1 | -4/+10 |
|
|
* | Issue #23074: asyncio.get_event_loop() now raises an exception if the thread | Victor Stinner | 2014-12-18 | 1 | -3/+3 |
|
|
* | asyncio: Improve canceled timer handles cleanup. Closes issue #22448. | Yury Selivanov | 2014-09-25 | 1 | -9/+20 |
|
|
* | asyncio, Tulip issue 206: In debug mode, keep the callback in the | Victor Stinner | 2014-09-17 | 1 | -13/+19 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-29 | 1 | -5/+10 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-10 | 1 | -4/+14 |
|
|
* | asyncio: sync with Tulip | Victor Stinner | 2014-07-08 | 1 | -0/+9 |
|
|
* | asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task and | Victor Stinner | 2014-06-27 | 1 | -4/+14 |
|
|
* | asyncio: Handle error handler: enhance formatting of the callback | Victor Stinner | 2014-06-25 | 1 | -2/+2 |
|
|
* | asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandle | Victor Stinner | 2014-06-25 | 1 | -17/+39 |
|
|