Lichen

tests/consts.py

76:1715725406f8
2016-10-04 Paul Boddie Use the original location for each access plan.
     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()