(self, child)
| 1646 | self.set_children(child) |
| 1647 | |
| 1648 | def _init(self, child): |
| 1649 | Transform.__init__(self) |
| 1650 | self.input_dims = child.input_dims |
| 1651 | self.output_dims = child.output_dims |
| 1652 | self._set(child) |
| 1653 | self._invalid = 0 |
| 1654 | |
| 1655 | def __eq__(self, other): |
| 1656 | return self._child.__eq__(other) |