(self, text)
| 975 | "Common utilities for DisTests and TestDisTraceback" |
| 976 | |
| 977 | def strip_addresses(self, text): |
| 978 | return re.sub(r'\b0x[0-9A-Fa-f]+\b', '0x...', text) |
| 979 | |
| 980 | def assert_exception_table_increasing(self, lines): |
| 981 | prev_start, prev_end = -1, -1 |
no test coverage detected