Lichen

tests/mutual_import/B.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 A import D, f     2      3 class C:     4     c = 1     5     def m(self):     6         return self.c     7      8 class E(D):     9     e = 2    10     def m(self):    11         return self.e    12     13 def g(x):    14     return f(x)