method: test.collect.DoctestFile.join

*Not documented*
    def join(self, name):

origin: test.collect.DoctestFile

where:

function source:

def join(self, name):
    from py.__.test.doctest import DoctestText
    if name == self.fspath.basename: 
        item = DoctestText(self.fspath.basename, parent=self)
        item._content = self.fspath.read()
        return item

call sites:

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

traceback test.collect.DoctestFile.join.0

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

traceback test.collect.DoctestFile.join.1