call site 0 for io.StdCapture.done
io/test/test_stdcapture.py - line 20
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/stdcapture.py - line 99
97
98
99
100
   def reset(self):
       """ return captured output as strings and restore sys.stdout/err."""
->     x, y = self.done() 
       return x.read(), y.read()