mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-02-04 13:00:04 +08:00
29 lines
246 B
Python
29 lines
246 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:
|