(x)
| 464 | return fmt.format(o) |
| 465 | |
| 466 | def repr_format(x): |
| 467 | if isinstance(x, (np.str_, np.bytes_)): |
| 468 | return repr(x.item()) |
| 469 | return repr(x) |
| 470 | |
| 471 | def str_format(x): |
| 472 | if isinstance(x, (np.str_, np.bytes_)): |
nothing calls this directly
no test coverage detected
searching dependent graphs…