Lichen

tests/mutual_import/A.py

843:d305986d05c8
2018-07-05 Paul Boddie Employed sets for attributes and providers referenced by accesses. This causes various attributes to be identified definitively in the access plans and instruction sequences.
     1 from B import C, g     2      3 class D(C):     4     d = 3     5     def m(self):     6         return self.d     7      8 def f(x):     9     return x.m()    10     11 def h(x):    12     return g(x)