micropython

tests/class_attr_ref_to_class.py

752:9b425fa89ea4
2013-11-28 Paul Boddie Visit only definitions at a particular level, not all definitions in a module. syspython-as-target
     1 #!/usr/bin/env python     2      3 class A:     4     pass     5      6 class B:     7     x = A     8      9 class C:    10     x = A    11     12 class D:    13     x = type    14     15 result_3 = C.x is A and 3 or 0    16 result_4 = D.x is type and 4 or 0    17     18 # vim: tabstop=4 expandtab shiftwidth=4