summaryrefslogtreecommitdiff
path: root/Lib/asyncio/base_events.py
Commit message (Expand)AuthorAgeFilesLines
* [3.8] Use threadpool for reading from file in sendfile fallback mode (GH-1407...Andrew Svetlov2019-06-151-1/+1
* bpo-37279: Fix asyncio sendfile support when extra data are sent in fallback...Miss Islington (bot)2019-06-151-2/+2
* Revert "bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-1378...Łukasz Langa2019-06-041-3/+1
* bpo-34037, asyncio: add BaseEventLoop.wait_executor_on_close (GH-13786)Victor Stinner2019-06-031-1/+3
* bpo-35246: fix support for path-like args in asyncio subprocess (GH-13628)依云2019-05-281-5/+0
* bpo-36686: Improve the documentation of the std* params in loop.subprocess_ex...sbstp2019-05-271-1/+18
* bpo-37027: Return a proxy socket object from transp.get_extra_info('socket') ...Yury Selivanov2019-05-271-2/+3
* bpo-37035: Don't log OSError (GH-13548)Andrew Svetlov2019-05-271-7/+0
* bpo-32528: Make asyncio.CancelledError a BaseException. (GH-13528)Yury Selivanov2019-05-271-5/+11
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Erwan Le Pape2019-05-171-3/+3
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Vincent Michel2019-05-071-1/+2
* bpo-33530: Implement Happy Eyeballs in asyncio, v2 (GH-7237)twisteroid ambassador2019-05-051-36/+89
* bpo-34139: Remove unix datagram socket from FS before binding (GH-8323)Quentin Dawans2019-04-091-0/+14
* asyncio: use dict instead of OrderedDict (GH-11710)Inada Naoki2019-02-051-1/+1
* asyncio: __del__() keep reference to warnings.warn (GH-11491)Victor Stinner2019-01-101-3/+2
* bpo-35380: Enable TCP_NODELAY for proactor event loop (#10867)Andrew Svetlov2018-12-031-0/+11
* bpo-35202: Remove unused imports in Lib directory (GH-10450)Srinivas Thatiparthy (శ్రీనివాస్ తాటిపర్తి)2018-11-151-1/+0
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)twisteroid ambassador2018-10-091-4/+1
* bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH...Andrew Svetlov2018-09-291-22/+1
* bpo-34630: Skip logging SSL certificate errors by asyncio code (GH-9169)Andrew Svetlov2018-09-121-0/+3
* bpo-34622: Extract asyncio exceptions into a separate module (GH-9141)Andrew Svetlov2018-09-111-5/+6
* bpo-34270: Make it possible to name asyncio tasks (GH-8547)Alex Grönholm2018-08-081-2/+4
* bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-8532)MartinAltmayer2018-07-311-1/+4
* bpo-34075: Deprecate non-ThreadPoolExecutor in loop.set_default_executor() (G...Elvis Pranskevichus2018-07-301-0/+6
* bpo-27500: Fix static version of getaddrinfo to resolve IPv6 (GH-7993)Yury Selivanov2018-06-281-4/+10
* bpo-30805: Avoid race condition with debug logging (GH-7545)Yury Selivanov2018-06-081-2/+4
* bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403)Yury Selivanov2018-06-051-3/+5
* bpo-33734: asyncio/ssl: a bunch of bugfixes (#7321)Yury Selivanov2018-06-041-1/+6
* bpo-33674: Pause the transport as early as possible (#7192)Yury Selivanov2018-05-291-2/+5
* bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172)Yury Selivanov2018-05-281-2/+5
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Yury Selivanov2018-05-281-1/+6
* bpo-32327: Revert loop.run_in_executor behaviour: return a Future. (#5392)Yury Selivanov2018-01-281-2/+2
* bpo-32622: Enforce sendfile fallback policy for FALLBACK transports (#5364)Yury Selivanov2018-01-271-1/+6
* bpo-32622: Implement loop.sendfile() (#5271)Andrew Svetlov2018-01-271-0/+142
* bpo-32662: Implement Server.start_serving() and Server.serve_forever() (#5312)Yury Selivanov2018-01-251-20/+82
* bpo-32436: Implement PEP 567 (#5027)Yury Selivanov2018-01-221-10/+11
* bpo-32314: Fix asyncio.run() to cancel runinng tasks on shutdown (#5262)Yury Selivanov2018-01-211-15/+10
* bpo-32591: Add native coroutine origin tracking (#5250)Nathaniel J. Smith2018-01-211-33/+16
* 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-151-21/+22
* bpo-32327: Convert asyncio functions documented as coroutines to coroutines. ...Yury Selivanov2017-12-141-46/+39
* bpo-32262: Fix f-string (#4787)Yury Selivanov2017-12-101-1/+1