(self, v)
| 1953 | return desc |
| 1954 | |
| 1955 | def validate_coerce(self, v): |
| 1956 | if is_none_or_typed_array_spec(v): |
| 1957 | pass |
| 1958 | elif self.array_ok and is_homogeneous_array(v): |
| 1959 | v = copy_to_readonly_numpy_array(v, kind="O") |
| 1960 | elif self.array_ok and is_simple_array(v): |
| 1961 | v = to_scalar_or_list(v) |
| 1962 | return v |
| 1963 | |
| 1964 | |
| 1965 | class InfoArrayValidator(BaseValidator): |
nothing calls this directly
no test coverage detected