summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-39191: Don't spawn a task before failing (GH-17796) (#17821)Andrew Svetlov2020-01-041-3/+7
* bpo-37228: Fix loop.create_datagram_endpoint()'s usage of SO_REUSEADDR (GH-17...Ned Deily2019-12-111-7/+18
* bpo-39006: Fix asyncio when the ssl module is missing (GH-17524)Miss Islington (bot)2019-12-091-10/+10
* bpo-37404: Raising value error if an SSLSocket is passed to asyncio functions...Miss Islington (bot)2019-12-071-0/+10
* bpo-38785: Prevent asyncio from crashing (GH-17144)Miss Islington (bot)2019-11-131-1/+4
* bpo-34344 Fix AbstractEventLoopPolicy.get_event_loop docstring (GH-16463)Miss Islington (bot)2019-10-031-2/+2
* Fix and improve `asyncio.run()` docs (GH-16403) (GH-16505)Miss Islington (bot)2019-10-011-5/+1
* bpo-38019: correctly handle pause/resume reading of closed asyncio unix pipe ...Miss Islington (bot)2019-09-291-0/+11
* bpo-38260: Add Docs on asyncio.run (GH-16337)Miss Islington (bot)2019-09-251-0/+4
* [3.7] bpo-37279: Fix asyncio sendfile support when extra data are sent in fa...Andrew Svetlov2019-06-151-2/+2
* Use threadpool for reading from file in sendfile fallback mode (GH-14076)Miss Islington (bot)2019-06-151-1/+1
* bpo-36607: Eliminate RuntimeError raised by asyncio.all_tasks() (GH-13971)Miss Islington (bot)2019-06-111-6/+32
* [3.7] bpo-37035: Don't log OSError (GH-13548) (#13594)Andrew Svetlov2019-05-275-9/+4
* bpo-35721: Close socket pair if Popen in _UnixSubprocessTransport fails (GH-1...Miss Islington (bot)2019-05-201-6/+12
* bpo-35545: Fix asyncio discarding IPv6 scopes (GH-11271)Miss Islington (bot)2019-05-171-3/+3
* Revert "bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transpor...Victor Stinner2019-05-142-22/+8
* bpo-36801: Fix waiting in StreamWriter.drain for closing SSL transport (GH-13...Miss Islington (bot)2019-05-072-8/+22
* bpo-35125: remove inner callback on outer cancellation in asyncio shield (GH-...Miss Islington (bot)2019-05-071-2/+8
* bpo-31922: Do not connect UDP sockets when broadcast is allowed (GH-423)Miss Islington (bot)2019-05-072-7/+13
* bpo-36613: call remove_done_callback if exception (GH-12800)Miss Islington (bot)2019-05-031-1/+2
* bpo-34745: Fix asyncio sslproto memory issues (GH-12386)Miss Islington (bot)2019-03-171-0/+4
* bpo-23846: Fix ProactorEventLoop._write_to_self() (GH-11566)Miss Islington (bot)2019-01-151-1/+7
* [3.7] bpo-34323: Enhance IocpProactor.close() log (GH-11565)Victor Stinner2019-01-151-8/+35
* bpo-35682: Fix _ProactorBasePipeTransport._force_close() (GH-11462)Miss Islington (bot)2019-01-081-1/+1
* [3.7] bpo-35380: Enable TCP_NODELAY for proactor event loop (GH-10867) (GH-10...Miss Islington (bot)2018-12-033-12/+17
* bpo-34970: Protect tasks weak set manipulation in asyncio.all_tasks() (GH-983...Miss Islington (bot)2018-10-131-2/+6
* bpo-34769: Thread safety for _asyncgen_finalizer_hook(). (GH-9716)Miss Islington (bot)2018-10-091-4/+1
* [3.7] bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-85...Miss Islington (bot)2018-07-311-1/+4
* bpo-33833: Fix ProactorSocketTransport AssertionError (GH-7893)Miss Islington (bot)2018-07-301-0/+4
* bpo-27500: Fix static version of getaddrinfo to resolve IPv6 (GH-7993)Miss Islington (bot)2018-06-291-4/+10
* bpo-30805: Avoid race condition with debug logging (GH-7545)Miss Islington (bot)2018-06-081-2/+4
* bpo-33694: Fix typo in helper function name (GH-7522)Miss Islington (bot)2018-06-083-3/+3
* bpo-33792: Add selector and proactor windows policies (GH-7487)Miss Islington (bot)2018-06-081-3/+8
* bpo-33694: Fix race condition in asyncio proactor (GH-7498) (GH-7499)Miss Islington (bot)2018-06-073-145/+73
* bpo-33769: start_tls: Fix error message; cancel callbacks on error (GH-7403) ...Miss Islington (bot)2018-06-052-3/+6
* bpo-33734: asyncio/ssl: a bunch of bugfixes (GH-7321) (GH-7396)Miss Islington (bot)2018-06-044-37/+39
* Revert "bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)" (GH-...Yury Selivanov2018-05-301-7/+0
* bpo-32751: Wait for task cancellation in asyncio.wait_for() (GH-7216)Miss Islington (bot)2018-05-291-2/+21
* bpo-32684: Fix gather to propagate cancel of itself with return_exceptions (G...Miss Islington (bot)2018-05-291-1/+13
* bpo-22087: Fix Policy.get_event_loop() to detect fork (GH-7208)Miss Islington (bot)2018-05-291-0/+7
* bpo-33353: test_asyncio use set_write_buffer_limits() (GH-7200)Miss Islington (bot)2018-05-291-1/+1
* bpo-33654: Support protocol type switching in SSLTransport.set_protocol() (GH...Miss Islington (bot)2018-05-291-4/+7
* bpo-33674: Pause the transport as early as possible (GH-7192)Miss Islington (bot)2018-05-291-2/+5
* bpo-33674: asyncio: Fix SSLProtocol race (GH-7175) (#7187)Miss Islington (bot)2018-05-291-1/+1
* bpo-32410: Avoid blocking on file IO in sendfile fallback code (GH-7172) (#7182)Miss Islington (bot)2018-05-292-2/+9
* bpo-32610: Fix asyncio.all_tasks() to return only pending tasks. (GH-7174)Miss Islington (bot)2018-05-293-3/+16
* bpo-33469: RuntimeError after closing loop that used run_in_executor (GH-7171)Miss Islington (bot)2018-05-281-0/+3
* bpo-33672: Fix Task.__repr__ crash with Cython's bogus coroutines (GH-7161) (...Miss Islington (bot)2018-05-282-40/+50
* bpo-33654: Support BufferedProtocol in set_protocol() and start_tls() (GH-7130)Miss Islington (bot)2018-05-286-26/+107
* bpo-33505: Optimize asyncio.ensure_future by reordering if conditions (GH-683...Miss Islington (bot)2018-05-281-5/+5