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