(self)
| 2631 | self._inverted = None |
| 2632 | |
| 2633 | def __str__(self): |
| 2634 | return ("{}(\n" |
| 2635 | "{})" |
| 2636 | .format(type(self).__name__, |
| 2637 | _indent_str(self._boxout))) |
| 2638 | |
| 2639 | def get_matrix(self): |
| 2640 | if self._invalid: |
nothing calls this directly
no test coverage detected