method: test.Item.startcapture

*Not documented*
    def startcapture(self): 

origin: test.Item

where:

function source:

def startcapture(self): 
    if not self.option.nocapture and not self.option.usepdb: 
        # XXX refactor integrate capturing
        #self._capture = py.io.OutErrCapture() 
        from py.__.misc.simplecapture import SimpleOutErrCapture
        self._capture = SimpleOutErrCapture()