A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2015-April/139562.html below:

[Python-Dev] PEP 492 vs. PEP 3152, new round

[Python-Dev] PEP 492 vs. PEP 3152, new round [Python-Dev] PEP 492 vs. PEP 3152, new roundGreg Ewing greg.ewing at canterbury.ac.nz
Mon Apr 27 14:52:25 CEST 2015
Yury Selivanov wrote:
> I've done some experiments with grammar, and it looks like
> we indeed can parse await quite differently from yield. Three
> different options:

You don't seem to have tried what I suggested, which is
to make 'await' a unary operator with the same precedence
as '-', i.e. replace

    factor: ('+'|'-'|'~') factor | power

with

    factor: ('+'|'-'|'~'|'await') factor | power

That would allow

   await a()
   res = await a() + await b()
   res = await await a()
   if await a(): pass
   return await a()
   print(await a())
   func(arg=await a())
   await a() * b()

-- 
Greg
More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4