2017-03-25 | Paul Boddie | file changeset files shortlog | Fixed method name. |
paul@320 | 1 | class C: |
paul@320 | 2 | pass |
paul@320 | 3 | |
paul@320 | 4 | def c(): |
paul@320 | 5 | return 456 |
paul@320 | 6 | |
paul@320 | 7 | def f(): |
paul@320 | 8 | return C() |
paul@320 | 9 | |
paul@320 | 10 | print f() # 123 |
paul@320 | 11 | |
paul@320 | 12 | C = c |
paul@320 | 13 | |
paul@320 | 14 | print f() # 456 |