Determine whether this range contains `value`.
(self, value: Union[_T, Range[_T]])
| 322 | return True |
| 323 | |
| 324 | def contains(self, value: Union[_T, Range[_T]]) -> bool: |
| 325 | "Determine whether this range contains `value`." |
| 326 | |
| 327 | if isinstance(value, Range): |
| 328 | return value.contained_by(self) |
| 329 | else: |
| 330 | return self._contains_value(value) |
| 331 | |
| 332 | __contains__ = contains |
| 333 |
nothing calls this directly
no test coverage detected