(self, object)
| 183 | return self.format(object, {}, 0, 0)[2] |
| 184 | |
| 185 | def isreadable(self, object): |
| 186 | s, readable, recursive = self.format(object, {}, 0, 0) |
| 187 | return readable and not recursive |
| 188 | |
| 189 | def _format(self, object, stream, indent, allowance, context, level): |
| 190 | objid = id(object) |