(a: object, b: object, fmt: str = "{} != {}")
| 365 | |
| 366 | |
| 367 | def assert_equal(a: object, b: object, fmt: str = "{} != {}") -> None: |
| 368 | __tracebackhide__ = True |
| 369 | if a != b: |
| 370 | raise AssertionError(fmt.format(good_repr(a), good_repr(b))) |
| 371 | |
| 372 | |
| 373 | def typename(t: type) -> str: |
searching dependent graphs…