(self, s: str)
| 2843 | self.error(obj, value) |
| 2844 | |
| 2845 | def from_string(self, s: str) -> complex | None: |
| 2846 | if self.allow_none and s == "None": |
| 2847 | return None |
| 2848 | return complex(s) |
| 2849 | |
| 2850 | def subclass_init(self, cls: type[t.Any]) -> None: |
| 2851 | pass # fully opt out of instance_init |
nothing calls this directly
no outgoing calls
no test coverage detected