2016-11-23 | Paul Boddie | file changeset files shortlog | Added print statements for testing purposes. |
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@214 | 11 | print C.attr |
paul@214 | 12 | print f.attr |
paul@214 | 13 | print t().attr |