Add some extra benchmarks

This commit is contained in:
Anthony Shaw
2022-03-28 09:47:13 +11:00
parent 27a494347e
commit 448558993f
3 changed files with 41 additions and 2 deletions

View File

@@ -9,6 +9,6 @@ def direct_import():
for _ in range(100_000):
return exists('/')
__benchmarks__ = [
__benchmarks__ = [
(dotted_import, direct_import, "Importing specific name instead of namespace"),
]
]