Lichen

tests/chains/main.py

608:1053537493ff
2017-02-20 Paul Boddie Merged changes from the default branch. method-wrapper-for-context
     1 import package.module     2      3 C = module.Class     4 c = module     5 f = c.Class     6      7 def t():     8     x = c.Class     9     return x    10     11 print C.attr                    # 457    12 print f.attr                    # 457    13 print t().attr                  # 457