call site 7 for io.StdCaptureFD.__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 100
99
100
   def getcapture(self, **kw): 
->     return py.io.StdCaptureFD(**kw)