2007-09-06 | Paul Boddie | file changeset files shortlog | Added a fully-qualified name method for WithName-derived classes, producing a more usable global name for applications such as the viewer. Added a method for returning "visible" class attributes to GeneralClass. Added an attribute table production function for integration with the explicit distribution, along with a test program option for generating such a table. |
paulb@190 | 1 | class A: |
paulb@190 | 2 | pass |
paulb@190 | 3 | |
paulb@190 | 4 | def f(): |
paulb@190 | 5 | try: |
paulb@190 | 6 | raise A |
paulb@190 | 7 | except A, e: |
paulb@190 | 8 | raise A |
paulb@190 | 9 | |
paulb@190 | 10 | f() |