xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
internal_bench
/
loop_count-1-range.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
import
bench
2
3
4
def
test
(
num
):
5
for
i
in
range
(
num
):
6
pass
7
8
9
bench
.
run
(
test
)
10