method: test.Item.__init__

*Not documented*
    def __init__(self, name, parent=None): 

origin: test.collect.Collector

where:

changes in __dict__ after execution:

function source:

def __init__(self, name, parent=None): 
    self.name = name 
    self.parent = parent 
    self.option = getattr(parent, 'option', None)
    self.fspath = getattr(parent, 'fspath', None) 

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/test/rsession/testing/test_master.py

traceback test.Item.__init__.0

called in /home/johnny/projects/merlinux/py/dist/py/test/tkinter/testing/test_util.py

traceback test.Item.__init__.1

called in /home/johnny/projects/merlinux/py/dist/py/test/rsession/testing/test_master.py

traceback test.Item.__init__.2