(self, a)
| 1345 | self.edge_items = options['edgeitems'] |
| 1346 | |
| 1347 | def __call__(self, a): |
| 1348 | self.summary_insert = "..." if a.size > self.threshold else "" |
| 1349 | return self.format_array(a) |
| 1350 | |
| 1351 | def format_array(self, a): |
| 1352 | if np.ndim(a) == 0: |
nothing calls this directly
no test coverage detected