Skip to content

Commit e8a02ae

Browse files
committed
test also PyObject
1 parent 48fe31e commit e8a02ae

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

asv_bench/benchmarks/series_methods.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,11 @@ def time_isin_long_series_long_values_floats(self):
9090
self.s_long_floats.isin(self.vals_long_floats)
9191

9292

93-
class IsInLongSeries(object):
94-
params = [["int64", "int32", "float64", "float32"], [1, 2, 5, 10, 1000, 10 ** 5]]
93+
class IsInLongSeries:
94+
params = [
95+
["int64", "int32", "float64", "float32", "object"],
96+
[1, 2, 5, 10, 1000, 10 ** 5],
97+
]
9598
param_names = ["dtype", "M"]
9699

97100
def setup(self, dtype, M):

0 commit comments

Comments
 (0)