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

12 lines
214 B
Python
Raw Normal View History

2023-08-28 10:17:29 +00:00
"""Write back all data it receives."""
import sys
data = sys.stdin.read(1)
while data:
sys.stdout.write(data)
sys.stdout.flush()
data = sys.stdin.read(1)
sys.stderr.write("byebye")
sys.stderr.flush()