Lichen

tests/consts.py

129:6750513b781b
2016-10-24 Paul Boddie Propagate resolved invocations amongst function defaults to the importer.
     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()