This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
0
You've already forked circuitpython
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
6626319338
circuitpython
/
tests
/
internal_bench
/
bytealloc-2-repeat.py
10 lines
109 B
Python
Raw
Normal View
History
Unescape
Escape
tests/bench: Add testcase to compare bytes(N) vs b"\0" * N. Based on python-dev discussion regarding PEP467.
2016-06-08 07:28:18 -04:00
import
bench
run code formatting script
2021-03-15 09:57:36 -04:00
tests/bench: Add testcase to compare bytes(N) vs b"\0" * N. Based on python-dev discussion regarding PEP467.
2016-06-08 07:28:18 -04:00
def
test
(
num
)
:
for
i
in
iter
(
range
(
num
/
/
1000
)
)
:
b
"
\0
"
*
10000
run code formatting script
2021-03-15 09:57:36 -04:00
tests/bench: Add testcase to compare bytes(N) vs b"\0" * N. Based on python-dev discussion regarding PEP467.
2016-06-08 07:28:18 -04:00
bench
.
run
(
test
)
Reference in New Issue
Copy Permalink