(self, object)
| 171 | return self.format(object, {}, 0, 0)[2] |
| 172 | |
| 173 | def isreadable(self, object): |
| 174 | s, readable, recursive = self.format(object, {}, 0, 0) |
| 175 | return readable and not recursive |
| 176 | |
| 177 | def _format(self, object, stream, indent, allowance, context, level): |
| 178 | objid = id(object) |