micropython

Annotated tests/failure/classes.py

43:7adb33e8b1d1
2008-02-17 Paul Boddie Moved deliberately failing tests to a special directory. Added support for generating attribute access instructions. Added further tests of class and instance attributes. Added optimisation of collective predictable attribute accesses.
paul@36 1
#!/usr/bin/env python
paul@36 2
paul@36 3
class A:
paul@36 4
    pass
paul@36 5
paul@36 6
class B:
paul@36 7
    pass
paul@36 8
paul@36 9
for x in A, B:
paul@36 10
    class C(x):
paul@36 11
        pass
paul@36 12
paul@36 13
# vim: tabstop=4 expandtab shiftwidth=4