mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 14:37:45 +07:00
8 lines
129 B
Python
8 lines
129 B
Python
def bad_autoformat_example():
|
|
a = 5
|
|
b = 10
|
|
print a, b
|
|
(a, b) = b, a
|
|
print a, b
|
|
a, b = b, a
|
|
print a, b |