call site 0 for io.StdCapture.__init__
io/test/test_stdcapture.py - line 9
8
9
10
11
12
13
14
   def test_capturing_done_simple(self):
->     cap = self.getcapture()
       print "hello world"
       print >>sys.stderr, "hello error"
       outfile, errfile = cap.done()
       assert outfile.read() == "hello world\n"
       assert errfile.read() == "hello error\n"
io/test/test_stdcapture.py - line 6
5
6
   def getcapture(self, **kw):
->     return py.io.StdCapture(**kw)