(self)
| 2218 | return f"{base}[{self.operand('columns')!r}]" |
| 2219 | |
| 2220 | def _divisions(self): |
| 2221 | if self.ndim == 0: |
| 2222 | return (None, None) |
| 2223 | return super()._divisions() |
| 2224 | |
| 2225 | def _simplify_down(self): |
| 2226 | if ( |
nothing calls this directly
no test coverage detected