mirror of
https://github.com/chenasraf/nvim-treesitter.git
synced 2026-05-18 01:39:00 +00:00
36 lines
321 B
Python
36 lines
321 B
Python
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
|
|
|
|
while (a > 4 and
|
|
b > 5):
|
|
pass
|
|
|
|
try:
|
|
|
|
def foo():
|
|
print('indentme')
|
|
|
|
# comment
|
|
if True:
|
|
pass
|