(self)
| 2583 | self._inverted = None |
| 2584 | |
| 2585 | def __str__(self): |
| 2586 | return ("{}(\n" |
| 2587 | "{},\n" |
| 2588 | "{})" |
| 2589 | .format(type(self).__name__, |
| 2590 | _indent_str(self._boxin), |
| 2591 | _indent_str(self._boxout))) |
| 2592 | |
| 2593 | def get_matrix(self): |
| 2594 | if self._invalid: |
nothing calls this directly
no test coverage detected