(object: Any)
| 652 | |
| 653 | |
| 654 | def _recursion(object: Any) -> str: |
| 655 | return f"<Recursion on {type(object).__name__} with id={id(object)}>" |
| 656 | |
| 657 | |
| 658 | def _wrap_bytes_repr(object: Any, width: int, allowance: int) -> Iterator[str]: |
no outgoing calls
no test coverage detected