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 9a3b08a commit df4d614Copy full SHA for df4d614
benchmark.py
@@ -86,7 +86,7 @@ def do_cst(self):
86
def do_cst_fmt(self):
87
with _Timer() as t:
88
_s = tformat(self._cst)
89
- self._add_line(1.5, 'CST', t.get())
+ self._add_line(1.5, 'CST_fmt', t.get())
90
91
def do_ast(self):
92
@@ -96,7 +96,7 @@ def do_ast(self):
96
def do_ast_fmt(self):
97
98
_s = tformat(self._ast)
99
- self._add_line(2.5, 'AST', t.get())
+ self._add_line(2.5, 'AST_fmt', t.get())
100
101
102
def benchmark(src: str, idx: int = -1, do_ast=True):
0 commit comments