| 298 | |
| 299 | def test_inline_functions_non_hashable(): |
| 300 | class NonHashableCallable: |
| 301 | def __call__(self, a): |
| 302 | return a + 1 |
| 303 | |
| 304 | def __hash__(self): |
| 305 | raise TypeError("Not hashable") |
| 306 | |
| 307 | nohash = NonHashableCallable() |
| 308 |
no outgoing calls
searching dependent graphs…