Lichen

tests/consts.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     s = "test"     3     m = s.__len__     4     n = "test".__len__     5      6 def g():     7     l = [1]     8     m = l.__len__     9     n = [1].__len__    10     11 f()    12 g()