(self, object)
| 165 | return self.format(object, {}, 0, 0)[2] |
| 166 | |
| 167 | def isreadable(self, object): |
| 168 | s, readable, recursive = self.format(object, {}, 0, 0) |
| 169 | return readable and not recursive |
| 170 | |
| 171 | def _format(self, object, stream, indent, allowance, context, level): |
| 172 | objid = id(object) |