3dc324d3f1
This adds the Python files in the tests/ directory to be formatted with ./tools/codeformat.py. The basics/ subdirectory is excluded for now so we aren't changing too much at once. In a few places `# fmt: off`/`# fmt: on` was used where the code had special formatting for readability or where the test was actually testing the specific formatting.
15 lines
355 B
Python
15 lines
355 B
Python
import micropython as micropython
|
|
|
|
# check we can get and set the level
|
|
micropython.opt_level(0)
|
|
print(micropython.opt_level())
|
|
micropython.opt_level(1)
|
|
print(micropython.opt_level())
|
|
|
|
# check that the optimisation levels actually differ
|
|
micropython.opt_level(0)
|
|
exec("print(__debug__)")
|
|
micropython.opt_level(1)
|
|
exec("print(__debug__)")
|
|
exec("assert 0")
|