(x)
| 469 | return repr(x) |
| 470 | |
| 471 | def str_format(x): |
| 472 | if isinstance(x, (np.str_, np.bytes_)): |
| 473 | return str(x.item()) |
| 474 | return str(x) |
| 475 | |
| 476 | def _get_formatdict(data, *, precision, floatmode, suppress, sign, legacy, |
| 477 | formatter, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…