2012-07-15 | Paul Boddie | file changeset files shortlog | Show only distinct attribute name lists when showing attribute usage for names. |
paul@412 | 1 | #!/usr/bin/env python |
paul@412 | 2 | |
paul@412 | 3 | class C: |
paul@412 | 4 | x = 1 |
paul@412 | 5 | |
paul@412 | 6 | class D: |
paul@412 | 7 | x = 2 |
paul@412 | 8 | |
paul@412 | 9 | result_1 = getattr(C, "x") |
paul@412 | 10 | result_2 = getattr(D, "x") |
paul@412 | 11 | |
paul@412 | 12 | # vim: tabstop=4 expandtab shiftwidth=4 |