(obj: Any)
| 128 | |
| 129 | |
| 130 | def isiterable(obj: Any) -> bool: |
| 131 | try: |
| 132 | iter(obj) |
| 133 | return not istext(obj) |
| 134 | except TypeError: |
| 135 | return False |
| 136 | |
| 137 | |
| 138 | def assertrepr_compare(config, op: str, left: Any, right: Any) -> Optional[List[str]]: |
no test coverage detected