web-dev-qa-db-fra.com

Comment utiliser l'expression d'attente?

Impossible de comprendre comment utiliser l'attente de python 3.5-rc2

>>> async def foo():
...     pass
... 
>>> await foo()
  File "<ipython-input-10-a18cb57f9337>", line 1
    await foo()
            ^
SyntaxError: invalid syntax

>>> c = foo()
>>> await c
  File "<ipython-input-12-cfb6bb0723be>", line 1
    await c
          ^
SyntaxError: invalid syntax

>>> import sys
>>> sys.version
'3.5.0rc2 (default, Aug 26 2015, 21:54:21) \n[GCC 5.2.0]'
>>> del c
RuntimeWarning: coroutine 'foo' was never awaited
>>> 
18
balki

Selon documentation , await ne peut être utilisé qu'à l'intérieur d'une fonction coroutine. Ainsi, la syntaxe correcte pour l'utiliser devrait être

async def foo():
    pass

async def bar():
    await foo()
21
Railslide

Tout comme en C #, await ne peut être utilisé que dans une méthode (fonction) async.

5
Melf