| 2211 | from _testcapi import exception_print |
| 2212 | |
| 2213 | class UnhashableException(Exception): |
| 2214 | def __eq__(self, other): |
| 2215 | return True |
| 2216 | |
| 2217 | ex1 = UnhashableException('ex1') |
| 2218 | ex2 = UnhashableException('ex2') |
no outgoing calls
searching dependent graphs…