summaryrefslogtreecommitdiff
path: root/Doc/library/asyncio-eventloop.rst
Commit message (Expand)AuthorAgeFilesLines
* docs: Add asyncio source code links (GH-16640)Kyle Stanley2019-10-101-0/+4
* bpo-38242: Revert "bpo-36889: Merge asyncio streams (GH-13251)" (#16482)Yury Selivanov2019-09-291-1/+2
* bpo-34037: Fix test_asyncio failure and add loop.shutdown_default_executor() ...Kyle Stanley2019-09-191-0/+12
* bpo-36889: Document asyncio Stream and StreamServer (GH-14203)Xtreak2019-06-241-2/+1
* asyncio: Fix docs for default event loop (#14308)Ben Darnell2019-06-221-1/+1
* Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-1378...Łukasz Langa2019-06-041-8/+2
* bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)Victor Stinner2019-06-031-2/+8
* bpo-29883: Asyncio proactor udp (GH-13440)Andrew Svetlov2019-05-281-2/+3
* bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...sbstp2019-05-271-24/+44
* bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237)twisteroid ambassador2019-05-051-1/+23
* Fixed typo (GH-11522)Alexander Vasin2019-05-031-2/+2
* bpo-36651: Fixed Asyncio Event Loop documentation inconsistency (GH-12866)Enrico Alarico Carbognani2019-04-181-3/+3
* bpo-36074: Result of `asyncio.Server.sockets` after `Server.close()` after ...Emmanuel Arias2019-02-221-2/+1
* bpo-35465: Document _UnixSelectorEventLoop.add_signal_handler. (GH-11145)Hrvoje Nikšić2018-12-181-0/+8
* bpo-35395: fix typos in asyncio eventloop documentation (GH-10880)Naglis2018-12-031-2/+2
* Doc: fix asyncio loop.close() description (GH-10229)Andriy Maletsky2018-10-291-1/+1
* bpo-11233: Create availability directive for documentation (GH-9692)Cheryl Sabella2018-10-121-5/+5
* bpo-34687: Update asyncio doc for ProactorEventLoop (GH-9623)Victor Stinner2018-09-281-9/+0
* bpo-33649: More improvements (GH-9439)Yury Selivanov2018-09-201-4/+45
* bpo-33649: Add a high-level section about Futures; few quick fixes (GH-9403)Yury Selivanov2018-09-181-1/+1
* bpo-33649: Note that asyncio.run() calls shutdown_asyncgens() (GH-9380)Yury Selivanov2018-09-171-1/+5
* bpo-33649: A copy-editing pass on asyncio documentation (GH-9376)Elvis Pranskevichus2018-09-171-162/+165
* bpo-33649: Add low-level APIs index. (GH-9364)Yury Selivanov2018-09-171-6/+8
* bpo-33649: Clarify protocol_factory as a method parameter (GH-9330)Bumsik Kim2018-09-161-4/+17
* bpo-33649: Fix asyncio-dev (GH-9324)Yury Selivanov2018-09-141-0/+5
* bpo-33649: Add high-level APIs cheat-sheet (GH-9319)Yury Selivanov2018-09-141-1/+1
* bpo-33649: Refresh Tasks and Futures pages (#9314)Yury Selivanov2018-09-141-1/+1
* bpo-33649: Edit asyncio eventloop doc - second pass (GH-9233)Carol Willing2018-09-121-62/+68
* bpo-33649: First asyncio docs improvement pass (GH-9142)Yury Selivanov2018-09-111-456/+704
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-081-1/+7
* bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-8532)MartinAltmayer2018-07-311-4/+0
* bpo-34075: Deprecate non-ThreadPoolExecutor in loop.set_default_executor() (G...Elvis Pranskevichus2018-07-301-1/+8
* doc: Fix typo in asyncio-eventloop.rst (GH-7345)MarcoFalke2018-06-091-2/+2
* bpo-33736: Improve the documentation of asyncio stream APIs (GH-7326)Elvis Pranskevichus2018-06-081-2/+2
* bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)Yury Selivanov2018-06-041-4/+4
* bpo-32436: Document PEP 567 changes to asyncio. (GH-7073)Yury Selivanov2018-05-231-4/+28
* Add versionchanged in create_datagram_endpoint doc (#4697)Romuald Brunet2018-05-141-0/+3
* Fix senfile typo (#6265)Sam Dunster2018-03-271-1/+1
* Fix a typo in asyncio docs (#5721)Andrew Svetlov2018-02-171-1/+1
* Implement TimerHandle.when() (#5473)Andrew Svetlov2018-02-011-4/+19
* bpo-32327: Revert loop.run_in_executor behaviour: return a Future. (#5392)Yury Selivanov2018-01-281-6/+9
* bpo-32622: Fix AbstractEventLoop.sendfile signature in documentation. (GH-5368)Elvis Pranskevichus2018-01-271-1/+1
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+31
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)Yury Selivanov2018-01-251-5/+82
* bpo-32410: Make SendfileNotAvailableError exception public (#5243)Andrew Svetlov2018-01-191-1/+13
* bpo-32410: Implement loop.sock_sendfile() (#4976)Andrew Svetlov2018-01-161-0/+30
* bpo-32418: Add get_loop() method on Server, AbstractServer classes (#4997)Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి)2017-12-301-0/+6
* bpo-23749: Implement loop.start_tls() (#5039)Yury Selivanov2017-12-301-0/+32
* bpo-29970: Make ssh_handshake_timeout None by default (#4939)Andrew Svetlov2017-12-201-5/+8
* bpo-29970: Add timeout for SSL handshake in asyncioNeil Aspinall2017-12-191-5/+34