mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
8 lines
140 B
Python
8 lines
140 B
Python
class A:
|
|
def f(self, a, b):
|
|
if a:
|
|
b = 1
|
|
elif b:
|
|
a = <caret>1
|
|
else:
|
|
print "a" |