summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/base_events.py
Commit message (Expand)AuthorAgeFilesLines
...
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-191-11/+6
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-161-0/+70
* bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-301-0/+3
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-301-1/+44
* bpo-32415: Add asyncio.Task.get_loop() and Future.get_loop() (#4992)Yury Selivanov2017-12-231-1/+1
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-6/+18
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-191-24/+39
* bpo-32355: Optimize asyncio.gather() (#4913)Yury Selivanov2017-12-191-5/+6
* bpo-27456: Simplify sock type checks (#4922)Yury Selivanov2017-12-191-26/+6
* bpo-27456: Ensure TCP_NODELAY is set on linux (#4231)Yury Selivanov2017-12-161-21/+22
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...Yury Selivanov2017-12-151-46/+39
* bpo-32262: Fix f-string (#4787)Yury Selivanov2017-12-111-1/+1
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-62/+60
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-081-69/+59
* bpo-31245: asyncio: Fix typo, isistance => isinstance (#4594)Victor Stinner2017-11-271-1/+1
* bpo-32047: -X dev enables asyncio debug mode (#4418)Victor Stinner2017-11-201-2/+1
* bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314)Antoine Pitrou2017-11-071-0/+5
* bpo-31245: Asyncio unix socket datagram (#3164)Quentin Dawans2017-10-301-0/+6
* call remove_done_callback in finally section (#1688)jimmylai2017-05-231-1/+2
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-251-11/+6
* bpo-30144: Import collections ABC from collections.abc rather than collection...Serhiy Storchaka2017-04-241-1/+2
* bpo-29762: More use "raise from None". (#569)Serhiy Storchaka2017-04-051-1/+1
* Remove unused imports.Serhiy Storchaka2016-12-161-1/+0
* Merge 3.5 (issue #28652)Yury Selivanov2016-11-211-12/+10
|\
| * Issue #28652: Partially rollback previous changesYury Selivanov2016-11-211-12/+10
* | Merge 3.5 (issue #28652)Yury Selivanov2016-11-091-11/+45
|\ \ | |/
| * Issue #28652: Make loop methods reject socket kinds they do not support.Yury Selivanov2016-11-091-11/+45
* | Merge 3.5 (issue #28613)Yury Selivanov2016-11-041-1/+6
|\ \ | |/
| * Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-041-1/+6
| * asyncio: Sync with upstreamYury Selivanov2016-11-031-0/+3
* | Merge 3.5 (issue #28600)Yury Selivanov2016-11-031-21/+19
|\ \ | |/
| * Issue #28600: Optimize loop.call_soon().Yury Selivanov2016-11-031-21/+19
* | Issue #28544: Implement asyncio.Task in C.Yury Selivanov2016-10-281-1/+1
* | Merge 3.5 (issue #26796)Yury Selivanov2016-10-211-4/+1
|\ \ | |/
| * Issue #26796: Don't configure the number of workers for default threadpool ex...Yury Selivanov2016-10-211-4/+1
* | Issue #28500: Fix asyncio to handle async gens GC from another thread.Yury Selivanov2016-10-211-0/+3
* | Merge 3.5 (issue #28371)Yury Selivanov2016-10-051-0/+3
|\ \ | |/
| * Issue #28371: Deprecate passing asyncio.Handles to run_in_executor.Yury Selivanov2016-10-051-0/+3
* | Misc asyncio improvements from upstream (merge 3.5->3.6)Guido van Rossum2016-09-301-18/+10
|\ \ | |/
| * Misc asyncio improvements from upstreamGuido van Rossum2016-09-301-18/+10
* | Merge 3.5 (issue #28174)Yury Selivanov2016-09-151-12/+13
|\ \ | |/
| * Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio)Yury Selivanov2016-09-151-12/+13
* | Merge 3.5 (issue #27906)Yury Selivanov2016-09-151-1/+1
|\ \ | |/
| * Issue #27906: Fix socket accept exhaustion during high TCP traffic.Yury Selivanov2016-09-151-1/+1
| * Another asyncio sync.Yury Selivanov2016-09-151-4/+5
| * asyncio: Sync with the upstreamYury Selivanov2016-09-151-0/+60
* | Merge 3.5 (asyncio)Yury Selivanov2016-09-151-8/+16
* | mergeRaymond Hettinger2016-09-091-1/+1
|\ \ | |/
| * Merge asyncio upstream.Guido van Rossum2016-09-091-1/+1
* | Issue #28003: Implement PEP 525 -- Asynchronous Generators.Yury Selivanov2016-09-091-2/+55