(self, obj: t.Any, value: t.Any)
| 2704 | ... |
| 2705 | |
| 2706 | def validate(self, obj: t.Any, value: t.Any) -> G: |
| 2707 | try: |
| 2708 | value = int(value) |
| 2709 | except Exception: |
| 2710 | self.error(obj, value) |
| 2711 | return _validate_bounds(self, obj, value) # type:ignore[no-any-return] |
| 2712 | |
| 2713 | |
| 2714 | Long, CLong = Int, CInt |
nothing calls this directly
no test coverage detected