method: test.TerminalSession.start

*Not documented*
    def start(self, colitem):

origin: test.TerminalSession

where:

function source:

def start(self, colitem):
    super(TerminalSession, self).start(colitem) 
    if self.config.option.collectonly: 
        cols = self._opencollectors
        self.out.line('    ' * len(cols) + repr(colitem))
        cols.append(colitem) 
    else: 
        cls = getattr(colitem, '__class__', None)
        if cls is None:
            return
        for typ in py.std.inspect.getmro(cls):
            meth = getattr(self, 'start_%s' % typ.__name__, None)
            if meth:
                meth(colitem)
                break 
        colitem.start = py.std.time.time() 

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.0

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.1

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.2

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.3

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.4

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.5

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.6

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.7

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.8

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.9

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.10

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.11

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.12

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.13

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.14

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.15

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.16

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.17

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.18

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.19

called in /home/johnny/projects/merlinux/py/dist/py/test/session.py

traceback test.TerminalSession.start.20