micropython

tests/class_class_attr.py

435:29c1a9810249
2011-06-26 Paul Boddie Changed the title of generated graphs.
     1 #!/usr/bin/env python     2      3 class A:     4     pass     5      6 class B(A):     7     pass     8      9 class C:    10     pass    11     12 result_1 = A.__class__ is type and 1 or 0    13 result_2 = B.__class__ is type and 2 or 0    14 result_3 = C.__class__ is type and 3 or 0    15     16 # vim: tabstop=4 expandtab shiftwidth=4