circuitpython/tests/feature_check/io_module.py

7 lines
72 B
Python

try:
import io
print("io")
except ImportError:
print("no")