mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +07:00
10 lines
246 B
Python
10 lines
246 B
Python
# with = 1 # legal identifier
|
|
# with = 1
|
|
with = 1
|
|
# from __future__ import nested_scopes, with_statement
|
|
from __future__ import nested_scopes, with_statement
|
|
# with x.y(z)[t] as y: pass
|
|
with x.y(z)[t] as y: pass
|
|
# with = 1 # now illegal
|
|
with = 1
|