This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
0
You've already forked circuitpython
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
4e6fa55cba
circuitpython
/
tests
/
float
/
true_value.py
8 lines
104 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
# Test true-ish value handling
if
not
0.0
:
print
(
"
float 0
"
)
run code formatting script
2021-03-15 09:57:36 -04:00
if
not
0
+
0
j
:
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
print
(
"
complex 0
"
)
Reference in New Issue
Copy Permalink