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
3ce0b512f8
circuitpython
/
tests
/
micropython
/
decorator.py
10 lines
107 B
Python
Raw
Normal View
History
Unescape
Escape
tests: Add tests for things that are not already tested. The aim here is to improve coverage of the code.
2015-03-12 18:47:44 -04:00
# test micropython-specific decorators
run code formatting script
2021-03-15 09:57:36 -04:00
tests: Add tests for things that are not already tested. The aim here is to improve coverage of the code.
2015-03-12 18:47:44 -04:00
@micropython.bytecode
def
f
(
)
:
run code formatting script
2021-03-15 09:57:36 -04:00
return
"
bytecode
"
tests: Add tests for things that are not already tested. The aim here is to improve coverage of the code.
2015-03-12 18:47:44 -04:00
print
(
f
(
)
)