(self, key)
| 6088 | return self._data.argsort(*args, **kwargs) |
| 6089 | |
| 6090 | def _check_indexing_error(self, key) -> None: |
| 6091 | if not is_scalar(key): |
| 6092 | # if key is not a scalar, directly raise an error (the code below |
| 6093 | # would convert to numpy arrays and raise later any way) - GH29926 |
| 6094 | raise InvalidIndexError(key) |
| 6095 | |
| 6096 | @cache_readonly |
| 6097 | def _should_fallback_to_positional(self) -> bool: |