micropython

tests/class_class_attr.py

523:43f315a8e0f0
2012-06-05 Paul Boddie Added warning annotations where no attribute access targets are found from usage observations.
     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