File tree 2 files changed +2
-5
lines changed
2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1228,9 +1228,7 @@ cdef class PyObjectHashTable(HashTable):
1228
1228
hash(val)
1229
1229
1230
1230
if ignore_na and (
1231
- (val is C_NA)
1232
- or (val != val)
1233
- or (val is None)
1231
+ checknull(val)
1234
1232
or (use_na_value and val == na_value)
1235
1233
):
1236
1234
# if missing values do not count as unique values (i.e. if
Original file line number Diff line number Diff line change @@ -388,10 +388,9 @@ def extract_array(
388
388
----------
389
389
obj : object
390
390
For Series / Index, the underlying ExtensionArray is unboxed.
391
- For Numpy-backed ExtensionArrays, the ndarray is extracted.
392
391
393
392
extract_numpy : bool, default False
394
- Whether to extract the ndarray from a PandasArray
393
+ Whether to extract the ndarray from a PandasArray.
395
394
396
395
extract_range : bool, default False
397
396
If we have a RangeIndex, return range._values if True
You can’t perform that action at this time.
0 commit comments