method: execnet.SshGateway.trace

*Not documented*
    def trace(self, *args):

origin: Gateway

where:

function source:

def trace(self, *args):
    if debug:
        try:
            l = "\n".join(args).split(os.linesep)
            id = getid(self)
            for x in l:
                print >>debug, x
            debug.flush()
        except sysex:
            raise
        except:
            traceback.print_exc()

call sites:

called in /home/johnny/projects/merlinux/py/dist/py/execnet/register.py

traceback execnet.SshGateway.trace.0