Determine if object requires a recursive representation.
(object)
| 79 | |
| 80 | |
| 81 | def isrecursive(object): |
| 82 | """Determine if object requires a recursive representation.""" |
| 83 | return PrettyPrinter()._safe_repr(object, {}, None, 0)[2] |
| 84 | |
| 85 | |
| 86 | class _safe_key: |
nothing calls this directly
no test coverage detected
searching dependent graphs…