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 dec797e commit 91e0b94Copy full SHA for 91e0b94
asv_bench/benchmarks/io/json.py
@@ -53,9 +53,6 @@ def time_read_json_lines(self, index):
53
def time_read_json_lines_concat(self, index):
54
concat(read_json(self.fname, orient="records", lines=True, chunksize=25000))
55
56
- def time_read_json_lines_concat_one(self, index):
57
- concat(read_json(self.fname, orient="records", lines=True, chunksize=1))
58
-
59
def time_read_json_lines_concat_hundred(self, index):
60
concat(read_json(self.fname, orient="records", lines=True, chunksize=100))
61
@@ -74,9 +71,6 @@ def peakmem_read_json_lines(self, index):
74
71
def peakmem_read_json_lines_concat(self, index):
75
72
76
73
77
- def peakmem_read_json_lines_concat_one(self, index):
78
79
80
def peakmem_read_json_lines_concat_hundred(self, index):
81
82
0 commit comments