Add more benchmarks

This commit is contained in:
Anthony Shaw
2022-03-03 08:26:43 +11:00
parent d2460dc844
commit f822d1acc1
3 changed files with 52 additions and 10 deletions

View File

@@ -6,17 +6,12 @@ def func_with_named_args(a, b, c):
def keyword_call():
func_with_kwargs(a=1, b=2, c=3)
func_with_kwargs(a=1, b=2, c=3)
func_with_kwargs(a=1, b=2, c=3)
func_with_kwargs(a=1, b=2, c=3)
func_with_kwargs(a=1, b=2, c=3)
def positional_call():
numbers = (1, 2, 3)
func_with_named_args(a=1, b=2, c=3)
func_with_named_args(a=1, b=2, c=3)
func_with_named_args(a=1, b=2, c=3)
func_with_named_args(a=1, b=2, c=3)
func_with_named_args(a=1, b=2, c=3)
def tiny_func(x, y):