Set the child to be anchored.
(self, child)
| 1001 | ) |
| 1002 | |
| 1003 | def set_child(self, child): |
| 1004 | """Set the child to be anchored.""" |
| 1005 | self._child = child |
| 1006 | if child is not None: |
| 1007 | child.axes = self.axes |
| 1008 | self.stale = True |
| 1009 | |
| 1010 | def get_child(self): |
| 1011 | """Return the child.""" |
no outgoing calls
no test coverage detected