mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 20:20:56 +07:00
16 lines
140 B
Python
16 lines
140 B
Python
if True:
|
|
bar = {}
|
|
else:
|
|
bar = object()
|
|
|
|
if "a" == "b":
|
|
bar.x = 1
|
|
bar.save()
|
|
|
|
if "c" == "d":
|
|
bar.y = 1
|
|
bar.save()
|
|
|
|
|
|
|