2008-03-22 | Paul Boddie | file changeset files shortlog | Introduced caching of object and parameter tables. Added parameter table entries for classes, referring to the appropriate __init__ method which should be called when a class is invoked. Added missing __init__ methods to list and listiterator. |
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 |