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
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 16:21:43 +01:00
# Test true-ish value handling
if
not
0.0
:
print
(
"
float 0
"
)
run code formatting script
2021-03-15 19:27:36 +05:30
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 16:21:43 +01:00
print
(
"
complex 0
"
)
Reference in New Issue
Copy Permalink