Lichen

Annotated tests/attr_base_usage_bad.py

511:b99c11afb6f5
2017-01-27 Paul Boddie Configure the Makefile using generated secondary Makefiles, replacing the debug-specific Makefile and permitting the selection of included source files.
paul@351 1
class C:
paul@351 2
    def f(self):
paul@351 3
        return self.x
paul@351 4
paul@351 5
class D(C):
paul@351 6
    pass
paul@351 7
paul@351 8
class E(C):
paul@351 9
    def __init__(self, x):
paul@351 10
        self.x = x
paul@351 11
paul@351 12
d = D()
paul@351 13
print d.f()
paul@351 14
paul@351 15
e = E(2)
paul@351 16
print e.f()