commit | cc2bbc2227c3f5ed9d8f6b3bd052e6f9e68279d2 | [log] [tgz] |
---|---|---|
author | Kyle Stanley <aeros167@gmail.com> | Mon May 18 23:03:28 2020 -0400 |
committer | GitHub <noreply@github.com> | Mon May 18 20:03:28 2020 -0700 |
tree | 84839ab8dd6cc9969c3bb7516e20715a8273fb33 | |
parent | d4fe098d1ee4f4056ac65cae55f5ffdd439dede0 [diff] |
bpo-32309: Implement asyncio.to_thread() (GH-20143) Implements `asyncio.to_thread`, a coroutine for asynchronously running IO-bound functions in a separate thread without blocking the event loop. See the discussion starting from [here](https://github.com/python/cpython/pull/18410#issuecomment-628930973) in GH-18410 for context. Automerge-Triggered-By: @aeros