diff options
Diffstat (limited to 'tools/buildbot/pylibs/twisted/test/process_echoer.py')
-rw-r--r-- | tools/buildbot/pylibs/twisted/test/process_echoer.py | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/buildbot/pylibs/twisted/test/process_echoer.py b/tools/buildbot/pylibs/twisted/test/process_echoer.py deleted file mode 100644 index 2f640bf..0000000 --- a/tools/buildbot/pylibs/twisted/test/process_echoer.py +++ /dev/null @@ -1,10 +0,0 @@ -"""Write back all data it receives.""" - -import sys - -data = sys.stdin.read(1) -while data: - sys.stdout.write(data) - data = sys.stdin.read(1) -sys.stderr.write("byebye") -sys.stderr.flush() |