Lichen

tests/mutual_import/A.py

794:7dd8e4815848
2017-03-31 Paul Boddie Introduced a multiple outcome result which can be used to provide a choice of return values to supply the initialiser and alias details.
     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)