Lichen

tests/assign_sequence.py

128:e3392c6469c9
2016-10-24 Paul Boddie Tidied up statement spacing and simple attribute access presentation. Added missing include and variable declarations.
     1 def f():     2     l = [1, 2, 3]     3     x = l     4     a, b, c = l     5     d, e, f = [1, 2, 3]     6      7 def g(x):     8     l = [1, 2, 3]     9     m = [4, l, 6]    10     if x:    11         n = l    12     else:    13         n = m    14     15 l = [1, 2, 3]    16 x = l    17 a, b, c = l    18 d, e, f = [1, 2, 3]    19 m = [4, l, 6]    20 if x:    21     n = l    22 else:    23     n = m