call site 1 for io.StdCapture.reset
io/test/test_stdcapture.py - line 29
24
25
26
27
28
29
30
31
   def test_capturing_mixed(self):
       cap = self.getcapture(mixed=True)
       print "hello",
       print >>sys.stderr, "world",
       print >>sys.stdout, ".",
->     out, err = cap.reset()
       assert out.strip() == "hello world ."
       assert not err