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
21ca1b8c2b
circuitpython
/
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 11:21:43 -04:00
try
:
1
/
0
except
ZeroDivisionError
:
print
(
"
ZeroDivisionError
"
)
tests/float: Add tests for zero to a negative power.
2017-02-02 08:04:13 -05:00
try
:
0
*
*
-
1
except
ZeroDivisionError
:
print
(
"
ZeroDivisionError
"
)