656c656
< if hasattr(self, 'type') and not isinstance(self, ParamContext):
---
> if hasattr(self, 'type'):
661,664c661,662
< np_child_names = [c for c in child_names \
< if not isinstance(self._children[c], ParamContext)]
< if len(np_child_names):
< print 'children=%s' % ' '.join(np_child_names)
---
> if len(child_names):
> print 'children=%s' % ' '.join(child_names)
714,715c712
< # ParamContexts don't serialize
< if isinstance(self, SimObject) and not isinstance(self, ParamContext):
---
> if isinstance(self, SimObject):
723c720
< if isinstance(self, SimObject) and not isinstance(self, ParamContext):
---
> if isinstance(self, SimObject):
785,787d781
< class ParamContext(SimObject):
< pass
<
796c790
< __all__ = ['SimObject', 'ParamContext']
---
> __all__ = ['SimObject']