micropython

Annotated tests/failure/attributes_class_bind_function_unbound_fake_self.py

288:54a2867eb465
2009-11-23 Paul Boddie Added attribute usage registration for branches where more specific attribute usage occurs, but where such usage cannot be merged back into the active usage definition for a given name. This should ensure that attributes are not forgotten because their usage was not merged and carried forward. Added more specific tests.
paul@233 1
#!/usr/bin/env python
paul@233 2
paul@233 3
def e(self, x):
paul@233 4
    return x
paul@233 5
paul@233 6
class C:
paul@233 7
    e = e
paul@233 8
paul@233 9
class D:
paul@233 10
    e = C.e
paul@233 11
paul@233 12
d = D()
paul@233 13
q = d.e # unbound C.e
paul@233 14
result_321 = q(123, 321)
paul@233 15
paul@233 16
# vim: tabstop=4 expandtab shiftwidth=4