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

11 lines
214 B
Python

"""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()