This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
2a5fe57e43
circuitpython
/
tests
/
bench
/
func_args-3.1-kw_1.py
14 lines
121 B
Python
Raw
Normal View
History
Unescape
Escape
tests/bench: Add tests for various ways to pass function args. Passing 3 args with keywords is for example 50% slower than via positional args.
2014-05-07 14:39:09 -04:00
import
bench
run code formatting script
2021-03-15 09:57:36 -04:00
tests/bench: Add tests for various ways to pass function args. Passing 3 args with keywords is for example 50% slower than via positional args.
2014-05-07 14:39:09 -04:00
def
func
(
a
)
:
pass
run code formatting script
2021-03-15 09:57:36 -04:00
tests/bench: Add tests for various ways to pass function args. Passing 3 args with keywords is for example 50% slower than via positional args.
2014-05-07 14:39:09 -04:00
def
test
(
num
)
:
for
i
in
iter
(
range
(
num
)
)
:
func
(
a
=
i
)
run code formatting script
2021-03-15 09:57:36 -04:00
tests/bench: Add tests for various ways to pass function args. Passing 3 args with keywords is for example 50% slower than via positional args.
2014-05-07 14:39:09 -04:00
bench
.
run
(
test
)