Return the (x, y) position of the text.
(self)
| 1014 | return x, y |
| 1015 | |
| 1016 | def get_position(self): |
| 1017 | """Return the (x, y) position of the text.""" |
| 1018 | # This should return the same data (possible unitized) as was |
| 1019 | # specified with 'set_x' and 'set_y'. |
| 1020 | return self._x, self._y |
| 1021 | |
| 1022 | def get_text(self): |
| 1023 | """Return the text string.""" |
no outgoing calls
no test coverage detected