(self, other)
| 320 | |
| 321 | |
| 322 | def __eq__(self, other): |
| 323 | return ( |
| 324 | type(self) == type(other) |
| 325 | and self.name == other.name |
| 326 | and self.x == other.x |
| 327 | and self.y == other.y |
| 328 | ) |
| 329 | |
| 330 | |
| 331 | print("Example 27") |
nothing calls this directly
no outgoing calls
no test coverage detected