2017-03-03 | Paul Boddie | file changeset files shortlog | Produce valid empty allocation locations when allocating attributes/parameters. |
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 |