New submission from Alex Grönholm:

Since Python 3.5 will not support awaiting for concurrent.futures.Futures 
natively, one has to use the asyncio.futures.wrap_future() function in 
coroutines like this:

async def foo():
    await wrap_future(executor.submit(...))

The wrap_future() function is, however, not mentioned in the asyncio 
documentation. It should be, in order for the standard library to provide the 
above crutch until proper support arrives in 3.6.

----------
assignee: docs@python
components: Documentation
messages: 247924
nosy: alex.gronholm, docs@python
priority: normal
severity: normal
status: open
title: Document asyncio.futures.wrap_future()
type: enhancement
versions: Python 3.5

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue24785>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to