microproduct/atmosphericDelay/ISCEApp/site-packages/twisted/test/process_tty.py

6 lines
130 B
Python
Raw Normal View History

2023-08-28 10:17:29 +00:00
"""Test to make sure we can open /dev/tty"""
with open("/dev/tty", "rb+", buffering=0) as f:
a = f.readline()
f.write(a)