method: test.collect.Generator.getcallargs

*Not documented*
    def getcallargs(self, obj):

origin: test.collect.Generator

where:

function source:

def getcallargs(self, obj):
    if isinstance(obj, (tuple, list)):
        call, args = obj[0], obj[1:]
    else:
        call, args = obj, ()
    return call, args 

call sites:

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

traceback test.collect.Generator.getcallargs.0

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

traceback test.collect.Generator.getcallargs.1

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

traceback test.collect.Generator.getcallargs.2

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

traceback test.collect.Generator.getcallargs.3

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

traceback test.collect.Generator.getcallargs.4