(self, x, maxlevel)
| 7 | |
| 8 | |
| 9 | def repr_array(self, x, maxlevel): |
| 10 | if isinstance(x, array.array): |
| 11 | return _old_repr_array(self, x, maxlevel) |
| 12 | else: |
| 13 | return self.repr_instance(x, maxlevel) |
| 14 | |
| 15 | |
| 16 | reprlib.Repr.repr_array = repr_array |
nothing calls this directly
no outgoing calls
no test coverage detected