Lichen

tests/consts.py

77:985a0cc2522b
2016-10-05 Paul Boddie Expanded the access plans to include a more complete set of details.
     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()