We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4693d1a commit 0110487Copy full SHA for 0110487
asv_bench/benchmarks/io/csv.py
@@ -594,7 +594,7 @@ def setup(self):
594
self.StringIO_input = StringIO(data)
595
596
def time_read_csv_index_col(self):
597
- read_csv(self.StringIO_input, index_col="a")
+ read_csv(self.data(self.StringIO_input), index_col="a")
598
599
600
class ReadCSVDatePyarrowEngine(StringIORewind):
@@ -605,7 +605,7 @@ def setup(self):
605
606
607
read_csv(
608
- self.StringIO_input,
+ self.data(self.StringIO_input),
609
parse_dates=["a"],
610
engine="pyarrow",
611
dtype_backend="pyarrow",
0 commit comments