(self, max_width: int)
| 2143 | return f"{type(self).__name__}{props}" |
| 2144 | |
| 2145 | def _repr_inline_(self, max_width: int) -> str: |
| 2146 | if self.level is None: |
| 2147 | return "MultiIndex" |
| 2148 | else: |
| 2149 | return super()._repr_inline_(max_width=max_width) |
| 2150 | |
| 2151 | def copy(self, deep: bool = True) -> Self: |
| 2152 | # see PandasIndexingAdapter.copy |
nothing calls this directly
no test coverage detected