(self, ax)
| 232 | |
| 233 | @martist.Artist.axes.setter |
| 234 | def axes(self, ax): |
| 235 | # TODO deal with this better |
| 236 | martist.Artist.axes.fset(self, ax) |
| 237 | for c in self.get_children(): |
| 238 | if c is not None: |
| 239 | c.axes = ax |
| 240 | |
| 241 | def contains(self, mouseevent): |
| 242 | """ |
nothing calls this directly
no test coverage detected