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 cb96e1b commit 9493830Copy full SHA for 9493830
benchmarking.py
@@ -22,7 +22,7 @@
22
}
23
24
results = {}
25
-for name in DATA:
+for name, xml in DATA.items(): # noqa: B007, PERF102
26
print(f"Running benchmarks for {name}...")
27
quick_time = timeit.timeit("quickparse(xml)", globals=globals(), number=3)
28
py_time = timeit.timeit("pyparse(xml)", globals=globals(), number=3)
0 commit comments