(self)
| 2198 | return f"{base}[{repr(self.operand('columns'))}]" |
| 2199 | |
| 2200 | def _divisions(self): |
| 2201 | if self.ndim == 0: |
| 2202 | return (None, None) |
| 2203 | return super()._divisions() |
| 2204 | |
| 2205 | def _simplify_down(self): |
| 2206 | if ( |
nothing calls this directly
no test coverage detected