mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +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 |