blob: 3218dc78e424d68a83f4146b5d9aad1611e114cf [file] [log] [blame]
Tor Norbye3a2425a2013-11-04 10:16:08 -08001def bad_autoformat_example():
2 a = 5
3 b = 10
4 print a, b
5 (a, b) = b, a
6 print a, b
7 a, b = b, a
8 print a, b