Coverage for /home/ubuntu/Documents/Research/mut_p6/sacred/sacred/pytee.py: 0%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

7 statements  

1#!/usr/bin/env python 

2# coding=utf-8 

3 

4if __name__ == "__main__": 

5 import sys 

6 

7 buffer = " " 

8 while len(buffer): 

9 buffer = sys.stdin.read() 

10 sys.stdout.write(buffer) 

11 sys.stderr.write(buffer)