Files
RustPython/extra_tests/snippets/stdlib_termios.py
2021-11-02 18:28:02 -04:00

14 lines
323 B
Python

def _test_termios():
# These tests are in a function so we can only run them if termios is available
assert termios.error.__module__ == "termios"
assert termios.error.__name__ == "error"
try:
import termios
except ImportError:
# Not all platforms have termios, noop
pass
else:
_test_termios()