mirror of
https://github.com/micropython/micropython.git
synced 2025-09-06 18:00:48 +02:00
9 lines
95 B
Python
9 lines
95 B
Python
with x:
|
|
f()
|
|
with x():
|
|
f()
|
|
with f() as x:
|
|
f(x)
|
|
with f() as x, g() as y:
|
|
f(x, y)
|