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

12 lines
214 B
Python
Raw Normal View History

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