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

12 lines
188 B
Python

"""Script used by test_process.TestTwoProcesses"""
# run until stdin is closed, then quit
import sys
while 1:
d = sys.stdin.read()
if len(d) == 0:
sys.exit(0)