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
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
1#!/usr/bin/env python
2# coding=utf-8
4if __name__ == "__main__":
5 import sys
7 buffer = " "
8 while len(buffer):
9 buffer = sys.stdin.read()
10 sys.stdout.write(buffer)
11 sys.stderr.write(buffer)