microproduct/atmosphericDelay-s1a/ISCEApp/site-packages/twisted/test/process_reader.py

13 lines
188 B
Python
Raw Normal View History

2024-12-18 03:03:53 +00:00
"""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)