call site 0 for io.StdCapture.__init__
io/test/test_stdcapture.py - line 67
66
67
68
69
70
71
72
   def test_just_out_capture(self): 
->     cap = self.getcapture(out=True, err=False)
       print >>sys.stdout, "hello"
       print >>sys.stderr, "world"
       out, err = cap.reset()
       assert out == "hello\n"
       assert not err 
io/test/test_stdcapture.py - line 6
5
6
   def getcapture(self, **kw):
->     return py.io.StdCapture(**kw)