micropython

tests/attributes_class_multiple.py

232:2ede6db71ceb
2009-05-31 Paul Boddie Fixed the structure of "if" statement code. Fixed comparison method definitions for equality and inequality. Added optimisation where exception handlers are pushed and popped without any code defined between these operations. Reviewed exception handling including that employed around operators, introducing PopHandler and ClearException instructions in order to properly maintain exception state. Added RSVP support for some integer comparisons. Split the compare2 test program into separate tests. Added some exception-related documentation.
     1 #!/usr/bin/env python     2      3 class C:     4     clsattr = 123     5     clsattr = 456     6      7 a = C     8 result_456 = C.clsattr     9     10 # vim: tabstop=4 expandtab shiftwidth=4