480c480,481
< raise TypeError, "SimObjects do not support multiple inheritance"
---
> raise TypeError, \
> "SimObjects do not support multiple inheritance"
682d682
< #include "sim/sim_object.hh"
684a685,686
> #include "sim/sim_object.hh"
>
985c987,988
< and not isinstance(self._values[keys], m5.proxy.BaseProxy):
---
> and not isinstance(self._values[keys],
> m5.proxy.BaseProxy):
1185,1186c1188,1190
< # Return parent object of this SimObject, not implemented by SimObjectVector
< # because the elements in a SimObjectVector may not share the same parent
---
> # Return parent object of this SimObject, not implemented by
> # SimObjectVector because the elements in a SimObjectVector may not share
> # the same parent
1278c1282,1283
< 'parent.any matched more than one: %s and %s' % (found_obj.path, match_obj.path)
---
> 'parent.any matched more than one: %s and %s' % \
> (found_obj.path, match_obj.path)