simplify

tests/dynamic_subclass.py

256:baa3d42674f9
2007-06-24 paulb Added the lib directory to the start of the module search path.
     1 if 2:     2     class A:     3         def f(self):     4             pass     5 else:     6     class A:     7         pass     8 class B(A):     9     pass