We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aac19c7 commit 593b687Copy full SHA for 593b687
pandas/_libs/lib.pyx
@@ -1974,9 +1974,11 @@ cdef class ComplexValidator(Validator):
1974
return cnp.PyDataType_ISCOMPLEX(self.dtype)
1975
1976
1977
-cdef bint is_complex_array(ndarray values):
+cdef bint is_complex_array(ndarray values, bint skipna=True):
1978
cdef:
1979
- ComplexValidator validator = ComplexValidator(values.size, values.dtype)
+ ComplexValidator validator = ComplexValidator(values.size,
1980
+ values.dtype,
1981
+ skipna=skipna)
1982
return validator.validate(values)
1983
1984
0 commit comments