call site 10 for io.StdCapture.__init__
execnet/testing/test_rsync.py - line 90
87
88
89
90
91
92
93
94
95
96
97
98
   def test_rsync_non_verbose(self):
       source = self.source
       source.ensure("hello")
->     cap = py.io.StdCapture()
       try:
           rsync = RSync(source, verbose=False)
           rsync.add_target(gw, self.dest1)
           rsync.send()
       finally:
           out, err = cap.reset()
       assert not out
       assert not err