This website requires JavaScript.
Explore
Help
Sign In
mirrors
/
micropython
mirror of
https://github.com/micropython/micropython.git
Watch
1
Star
0
Fork
You've already forked micropython
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
b23bd6433c
micropython
/
tests
/
float
/
int_divzero.py
10 lines
147 B
Python
Raw
Normal View
History
Unescape
Escape
tests: Split out those tests requiring float and import. Tests in basics (which should probably be renamed to core) should not rely on float, or import any non-built-in files. This way these tests can be run when those features are not available. All test in basics now pass on the pyboard using stmhal port, except for string-repr which has some issues with character hex printing.
2014-04-17 16:21:43 +01:00
try
:
1
/
0
except
ZeroDivisionError
:
print
(
"
ZeroDivisionError
"
)
tests/float: Add tests for zero to a negative power.
2017-02-02 13:04:13 +00:00
try
:
0
*
*
-
1
except
ZeroDivisionError
:
print
(
"
ZeroDivisionError
"
)