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 bebf759 commit a42cb3cCopy full SHA for a42cb3c
pandas/core/algorithms.py
@@ -29,7 +29,6 @@
29
is_list_like)
30
from pandas.types.missing import isnull
31
32
-
33
import pandas.core.common as com
34
import pandas.algos as algos
35
import pandas.hashtable as htable
pandas/src/util.pxd
@@ -97,5 +97,6 @@ cdef inline bint _checknull_old(object val):
97
cdef inline bint _checknan(object val):
98
return not cnp.PyArray_Check(val) and val != val
99
100
+
101
cdef inline bint is_period_object(object val):
102
return getattr(val, '_typ', '_typ') == 'period'
0 commit comments