2007-07-27 | paulb | file changeset files shortlog | Various documentation, parameter and output fixes. |
paulb@107 | 1 | class X: |
paulb@107 | 2 | def y(self): pass |
paulb@107 | 3 | class Y: |
paulb@107 | 4 | def x(self): pass |
paulb@107 | 5 | x = X() |
paulb@107 | 6 | y = Y() |
paul@0 | 7 | try: |
paul@0 | 8 | x.y() |
paul@0 | 9 | finally: |
paul@0 | 10 | y.x() |