(self)
| 2362 | def __lt__(self, other): |
| 2363 | return self.x < other |
| 2364 | def __str__(self): |
| 2365 | return "Proxy:%s" % self.x |
| 2366 | def __repr__(self): |
| 2367 | return "Proxy(%r)" % self.x |
| 2368 | def __contains__(self, value): |
no outgoing calls
no test coverage detected