nvim-treesitter/lua/tests/indent/python/control_flow.py
2021-04-23 21:21:38 +02:00

24 lines
218 B
Python

a, b, c, = 1, 2, 3
if a == a:
x = 1
elif b:
x = 2
else:
x = 3
while False:
pass
for _ in range(3):
pass
with open('/tmp/f', 'w') as f:
pass
try:
pass
except:
pass
finally:
pass