mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
Because 2.6 is not supported since 2019.1 in IDE. GitOrigin-RevId: 3dee3e941c921ad3a5dc6d72cca840eb5d811691
8 lines
588 B
Python
8 lines
588 B
Python
<warning descr="Python version 2.7 does not support this syntax">async</warning> def foo(x):
|
|
<warning descr="Python version 2.7 does not support this syntax">async</warning> with x:
|
|
y = <warning descr="Python version 2.7 does not support this syntax">await x</warning>
|
|
if <warning descr="Python version 2.7 does not support this syntax">await y</warning>:
|
|
return <warning descr="Python version 2.7 does not support this syntax">await z</warning>
|
|
<warning descr="Python version 2.7 does not support this syntax">async</warning> for y in x:
|
|
pass
|