| 55 | """object.__ne__() should allow reflected __ne__() to be tried""" |
| 56 | calls = [] |
| 57 | class Left: |
| 58 | # Inherits object.__ne__() |
| 59 | def __eq__(*args): |
| 60 | calls.append('Left.__eq__') |
| 61 | return NotImplemented |
| 62 | class Right: |
| 63 | def __eq__(*args): |
| 64 | calls.append('Right.__eq__') |
no outgoing calls
searching dependent graphs…