mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-01 19:17:02 -04:00
23 lines
198 B
Python
23 lines
198 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
|