summaryrefslogtreecommitdiff
path: root/Lib/asyncio/events.py
Commit message (Expand)AuthorAgeFilesLines
* bpo-33734: asyncio/ssl: a bunch of bugfixes (GH-7321) (GH-7396)Miss Islington (bot)2018-06-041-3/+2
* Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (GH-...Yury Selivanov2018-05-291-7/+0
* bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)Miss Islington (bot)2018-05-291-0/+7
* Fix senfile typo (GH-6265) (#6274)Miss Islington (bot)2018-03-271-1/+1
* Implement TimerHandle.when() (GH-5473) (GH-5480)Miss Islington (bot)2018-02-011-0/+8
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+8
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)Yury Selivanov2018-01-251-5/+43
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-221-5/+10
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-191-1/+9
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-161-0/+4
* bpo-32418: Postfix, raise NotImplementdError and close resources in tests (#5...Andrew Svetlov2017-12-301-3/+3
* bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-301-0/+4
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-301-0/+11
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-5/+4
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-191-15/+31
* bpo-32311: Implement asyncio.create_task() shortcut (#4848)Andrew Svetlov2017-12-151-76/+7
* bpo-32296: Implement asyncio.get_event_loop and _get_running_loop in C. (#4827)Yury Selivanov2017-12-131-0/+27
* Add asyncio.get_running_loop() function. (#4782)Yury Selivanov2017-12-111-1/+13
* bpo-32262: Fix codestyle; use f-strings formatting where necessary. (#4775)Yury Selivanov2017-12-101-20/+23
* bpo-32193: Convert asyncio to async/await usage (#4753)Andrew Svetlov2017-12-091-35/+41
* bpo-32066: Support pathlib.Path in create_unix_connection; sock arg should be...Yury Selivanov2017-11-201-2/+2
* bpo-31970: Reduce performance overhead of asyncio debug mode. (#4314)Antoine Pitrou2017-11-071-1/+20
* Add asyncio.Handle.cancelled() method (#2388)Marat Sharafutdinov2017-11-071-0/+3
* bpo-31245: Asyncio unix socket datagram (#3164)Quentin Dawans2017-10-301-2/+2
* bpo-31819: Add AbstractEventLoop.sock_recv_into() (#4051)Antoine Pitrou2017-10-191-0/+3
* bpo-31350: Optimize get_event_loop and _get_running_loop (#3347)jimmylai2017-09-051-6/+4
* bpo-29617: Remove Python 3.3 support from asyncio (GH-232)INADA Naoki2017-04-251-7/+2
* asyncio: Optimize _get_running_loop() to call getpid() only when there's a loopYury Selivanov2017-03-021-2/+3
* bpo-29703: asyncio: Fix creating new event loops in child processes. (#404)Yury Selivanov2017-03-021-1/+7
* Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop()Yury Selivanov2016-11-071-0/+1
* Issue #28613: Fix get_event_loop() to return the current loopYury Selivanov2016-11-041-1/+35
* Issue #28600: Optimize loop.call_soon().Yury Selivanov2016-11-031-1/+0
* Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__.Yury Selivanov2016-09-151-13/+14
* asyncio: Sync with the upstreamYury Selivanov2016-09-151-0/+4
* Issue #27041: asyncio: Add loop.create_future methodYury Selivanov2016-05-161-0/+3
* Issue #27040: Add loop.get_exception_handler methodYury Selivanov2016-05-161-0/+3
* Issue #23972: updates to asyncio datagram API. By Chris Laws.Guido van Rossum2015-10-051-2/+38
* Issue #23630, asyncio: host parameter of loop.create_server() can now be aVictor Stinner2015-09-211-1/+2
* asyncio: Add asyncio.compat moduleVictor Stinner2015-07-251-4/+3
* Sync asyncio changes from the main repo.Yury Selivanov2015-05-111-1/+9
* Asyncio issue 222 / PR 231 (Victor Stinner) -- fix @coroutine functions witho...Guido van Rossum2015-05-021-4/+10
* Issue #23074: asyncio.get_event_loop() now raises an exception if the threadVictor Stinner2014-12-181-3/+3
* asyncio: Improve canceled timer handles cleanup. Closes issue #22448.Yury Selivanov2014-09-251-9/+20
* asyncio, Tulip issue 206: In debug mode, keep the callback in theVictor Stinner2014-09-171-13/+19
* asyncio: sync with TulipVictor Stinner2014-07-291-5/+10
* asyncio: sync with TulipVictor Stinner2014-07-101-4/+14
* asyncio: sync with TulipVictor Stinner2014-07-081-0/+9
* asyncio, Tulip issue 137: In debug mode, save traceback where Future, Task andVictor Stinner2014-06-271-4/+14
* asyncio: Handle error handler: enhance formatting of the callbackVictor Stinner2014-06-261-2/+2
* asyncio, Tulip issue 177: Rewite repr() of Future, Task, Handle and TimerHandleVictor Stinner2014-06-251-17/+39