(self, value)
| 40 | self.end_included = end_included |
| 41 | |
| 42 | def contains(self, value): |
| 43 | if value < self.start or value == self.start and not self.start_included: |
| 44 | return False |
| 45 | if value > self.end or value == self.end and not self.end_included: |
| 46 | return False |
| 47 | return True |
| 48 | |
| 49 | def __eq__(self, other): |
| 50 | return (self.start == other.start and |
no outgoing calls