diff --git a/asv_bench/benchmarks/indexing.py b/asv_bench/benchmarks/indexing.py index 720bd0245be41..84604b8196536 100644 --- a/asv_bench/benchmarks/indexing.py +++ b/asv_bench/benchmarks/indexing.py @@ -129,10 +129,6 @@ def time_getitem_label_slice(self, index, index_structure): def time_getitem_pos_slice(self, index, index_structure): self.s[:80000] - def time_get_value(self, index, index_structure): - with warnings.catch_warnings(record=True): - self.s.get_value(self.lbl) - def time_getitem_scalar(self, index, index_structure): self.s[self.lbl] @@ -151,10 +147,6 @@ def setup(self): self.bool_indexer = self.df[self.col_scalar] > 0 self.bool_obj_indexer = self.bool_indexer.astype(object) - def time_get_value(self): - with warnings.catch_warnings(record=True): - self.df.get_value(self.idx_scalar, self.col_scalar) - def time_ix(self): with warnings.catch_warnings(record=True): self.df.ix[self.idx_scalar, self.col_scalar]