call site 0 for io.StdCaptureFD.__init__
io/test/test_stdcapture.py - line 17
16
17
18
19
20
21
22
   def test_capturing_reset_simple(self):
->     cap = self.getcapture()
       print "hello world"
       print >>sys.stderr, "hello error"
       out, err = cap.reset()
       assert out == "hello world\n"
       assert err == "hello error\n"
io/test/test_stdcapture.py - line 100
99
100
   def getcapture(self, **kw): 
->     return py.io.StdCaptureFD(**kw)