(obj)
| 3517 | |
| 3518 | |
| 3519 | def _is_visit_pair(obj): |
| 3520 | return (isinstance(obj, tuple) |
| 3521 | and len(obj) == 2 |
| 3522 | and isinstance(obj[0], (int, str))) |
| 3523 | |
| 3524 | |
| 3525 | def traverse(obj, visit, parents=[], result=None, *args, **kwargs): |
no outgoing calls
no test coverage detected
searching dependent graphs…