True if the repr should show the info view.
(self)
| 1180 | return repr_width < width |
| 1181 | |
| 1182 | def _info_repr(self) -> bool: |
| 1183 | """ |
| 1184 | True if the repr should show the info view. |
| 1185 | """ |
| 1186 | info_repr_option = get_option("display.large_repr") == "info" |
| 1187 | return info_repr_option and not ( |
| 1188 | self._repr_fits_horizontal_() and self._repr_fits_vertical_() |
| 1189 | ) |
| 1190 | |
| 1191 | def __repr__(self) -> str: |
| 1192 | """ |
no test coverage detected