method: test.collect.Directory.makeitem

*Not documented*
    def makeitem(self, basename, filefilter=None, recfilter=None): 

origin: test.collect.Directory

where:

exceptions that might appear during execution:

function source:

def makeitem(self, basename, filefilter=None, recfilter=None): 
    p = self.fspath.join(basename)
    if p.check(file=1) and (not filefilter or filefilter(p)): 
        if p.ext == '.py':
            return self.Module(p, parent=self) 
        elif p.ext == '.txt':
            return self.DoctestFile(p, parent=self)
    elif p.check(dir=1) and (not recfilter or recfilter(p)): 
        Directory = py.test.Config.getvalue('Directory', p) 
        return Directory(p, parent=self) 

call sites:

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

traceback test.collect.Directory.makeitem.0

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

traceback test.collect.Directory.makeitem.1

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

traceback test.collect.Directory.makeitem.2

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

traceback test.collect.Directory.makeitem.3

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

traceback test.collect.Directory.makeitem.4

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

traceback test.collect.Directory.makeitem.5

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

traceback test.collect.Directory.makeitem.6

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

traceback test.collect.Directory.makeitem.7

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

traceback test.collect.Directory.makeitem.8

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

traceback test.collect.Directory.makeitem.9

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

traceback test.collect.Directory.makeitem.10

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

traceback test.collect.Directory.makeitem.11

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

traceback test.collect.Directory.makeitem.12

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

traceback test.collect.Directory.makeitem.13

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

traceback test.collect.Directory.makeitem.14

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

traceback test.collect.Directory.makeitem.15

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

traceback test.collect.Directory.makeitem.16

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

traceback test.collect.Directory.makeitem.17

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

traceback test.collect.Directory.makeitem.18

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

traceback test.collect.Directory.makeitem.19

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

traceback test.collect.Directory.makeitem.20