(self, s: str)
| 2655 | return _validate_bounds(self, obj, value) # type:ignore[no-any-return] |
| 2656 | |
| 2657 | def from_string(self, s: str) -> G: |
| 2658 | if self.allow_none and s == "None": |
| 2659 | return None # type:ignore[return-value] |
| 2660 | return int(s) # type:ignore[return-value] |
| 2661 | |
| 2662 | def subclass_init(self, cls: type[t.Any]) -> None: |
| 2663 | pass # fully opt out of instance_init |
no outgoing calls