Determine if saferepr(object) is readable by eval().
(object)
| 70 | return PrettyPrinter()._safe_repr(object, {}, None, 0)[0] |
| 71 | |
| 72 | def isreadable(object): |
| 73 | """Determine if saferepr(object) is readable by eval().""" |
| 74 | return PrettyPrinter()._safe_repr(object, {}, None, 0)[1] |
| 75 | |
| 76 | def isrecursive(object): |
| 77 | """Determine if object requires a recursive representation.""" |
nothing calls this directly
no test coverage detected