8000
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 5761e35 commit 539c54fCopy full SHA for 539c54f
asv_bench/benchmarks/index_object.py
@@ -138,7 +138,8 @@ def setup(self, dtype):
138
self.sorted = self.idx.sort_values()
139
half = N // 2
140
self.non_unique = self.idx[:half].append(self.idx[:half])
141
- self.non_unique_sorted = self.sorted[:half].append(self.sorted[:half])
+ self.non_unique_sorted = (self.sorted[:half].append(self.sorted[:half])
142
+ .sort_values())
143
self.key = self.sorted[N // 4]
144
145
def time_boolean_array(self, dtype):
0 commit comments