Skip to content

Commit 637a461

Browse files
WillAydquintusdias
authored andcommitted
Removed old benchmarks (pandas-dev#27603)
1 parent a2f670c commit 637a461

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

asv_bench/benchmarks/indexing.py

-8
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,6 @@ def time_getitem_label_slice(self, index, index_structure):
129129
def time_getitem_pos_slice(self, index, index_structure):
130130
self.s[:80000]
131131

132-
def time_get_value(self, index, index_structure):
133-
with warnings.catch_warnings(record=True):
134-
self.s.get_value(self.lbl)
135-
136132
def time_getitem_scalar(self, index, index_structure):
137133
self.s[self.lbl]
138134

@@ -151,10 +147,6 @@ def setup(self):
151147
self.bool_indexer = self.df[self.col_scalar] > 0
152148
self.bool_obj_indexer = self.bool_indexer.astype(object)
153149

154-
def time_get_value(self):
155-
with warnings.catch_warnings(record=True):
156-
self.df.get_value(self.idx_scalar, self.col_scalar)
157-
158150
def time_ix(self):
159151
with warnings.catch_warnings(record=True):
160152
self.df.ix[self.idx_scalar, self.col_scalar]

0 commit comments

Comments
 (0)