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@40 | 1 | #!/usr/bin/env python |
paul@40 | 2 | |
paul@40 | 3 | def g(x): |
paul@40 | 4 | b = 3 |
paul@40 | 5 | global b |
paul@40 | 6 | b = 4 |
paul@40 | 7 | |
paul@40 | 8 | # vim: tabstop=4 expandtab shiftwidth=4 |