We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent feef464 commit eba95f6Copy full SHA for eba95f6
asv_bench/benchmarks/io/csv.py
@@ -132,7 +132,7 @@ class ReadCSVConcatDatetimeBadDateValue(StringIORewind):
132
param_names = ["bad_date_value"]
133
134
def setup(self, bad_date_value):
135
- self.StringIO_input = StringIO(("%s,\n" % bad_date_value) * 50000)
+ self.StringIO_input = StringIO((f"{bad_date_value},\n") * 50000)
136
137
def time_read_csv(self, bad_date_value):
138
read_csv(
0 commit comments