2016-12-05 | Paul Boddie | file changeset files shortlog | Added/fixed various comments in the tests. |
paul@2 | 1 | import package.module |
paul@2 | 2 | |
paul@15 | 3 | C = module.Class |
paul@15 | 4 | c = module |
paul@15 | 5 | f = c.Class |
paul@2 | 6 | |
paul@2 | 7 | def t(): |
paul@15 | 8 | x = c.Class |
paul@214 | 9 | return x |
paul@214 | 10 | |
paul@315 | 11 | print C.attr # 457 |
paul@315 | 12 | print f.attr # 457 |
paul@315 | 13 | print t().attr # 457 |