The upper bound of the range. `!None` if empty or unbound.
(self)
| 135 | |
| 136 | @property |
| 137 | def upper(self) -> T | None: |
| 138 | """The upper bound of the range. `!None` if empty or unbound.""" |
| 139 | return self._upper |
| 140 | |
| 141 | @property |
| 142 | def bounds(self) -> str: |
no outgoing calls