simplify

tests/dynamic_subclass.py

60:48b747a69cc6
2006-10-07 paulb Added original node attribute initialisation to structure-related classes. Introduced stream parameterisation to the pprint methods of the Node class.
     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