diff options
author | Guido van Rossum <guido@python.org> | 2015-10-03 15:34:34 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2015-10-03 15:34:34 (GMT) |
commit | 0d9bef927b2883d98d61dafe21428c97cee18c47 (patch) | |
tree | 943829e2241ecaec8def8cd6187da381c5740888 /Misc | |
parent | 2b8cbf04df7c4e8ee8742793020df5405db8441b (diff) | |
parent | 841d9ee41a8ad0a8a372f9b84f0fa40b07bcc66b (diff) | |
download | cpython-0d9bef927b2883d98d61dafe21428c97cee18c47.zip cpython-0d9bef927b2883d98d61dafe21428c97cee18c47.tar.gz cpython-0d9bef927b2883d98d61dafe21428c97cee18c47.tar.bz2 |
Issue #25304: Add asyncio.run_coroutine_threadsafe(). By Vincent Michel. (Merge 3.4->3.5.)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -957,6 +957,7 @@ Steven Miale Trent Mick Jason Michalski Franck Michea +Vincent Michel Tom Middleton Thomas Miedema Stan Mihai @@ -34,6 +34,10 @@ Core and Builtins Library ------- +- Issue #25304: Add asyncio.run_coroutine_threadsafe(). This lets you + submit a coroutine to a loop from another thread, returning a + concurrent.futures.Future. By Vincent Michel. + - Issue #25232: Fix CGIRequestHandler to split the query from the URL at the first question mark (?) rather than the last. Patch from Xiang Zhang. |