(self, object)
| 163 | return self.format(object, {}, 0, 0)[2] |
| 164 | |
| 165 | def isreadable(self, object): |
| 166 | s, readable, recursive = self.format(object, {}, 0, 0) |
| 167 | return readable and not recursive |
| 168 | |
| 169 | def _format(self, object, stream, indent, allowance, context, level, enable_pickle=None): |
| 170 | if enable_pickle is None: |