HubobelsPython/venv/lib/python3.9/site-packages/twisted/test/process_tty.py
2022-01-02 21:50:48 +01:00

5 lines
130 B
Python

"""Test to make sure we can open /dev/tty"""
with open("/dev/tty", "rb+", buffering=0) as f:
a = f.readline()
f.write(a)