| Imported modules |  | 
        
        | import distutils.sysconfig import os
 import string
 import sys
 
 | 
        
            | Functions |  | 
        
        | initDebugger runcall
 setScriptname
 
 | 
            |  | initDebugger | 
        
        | 
initDebugger ( kind="standard" )
 Module function to initialize a debugger for remote debugging.    Arguments
        kindtype of debugger ("standard", "noqt" or "threads")     Returns        flag indicating success (boolean) | 
            |  | runcall | 
        
        | 
runcall ( func,  *args )
 Module function mimicing the Pdb interface.    Arguments
        funcfunction to be called (function object)        *argsarguments being passed to func     Returns        the function result | 
            |  | setScriptname | 
        
        | 
setScriptname ( name )
 Module function to set the scriptname to be reported bach to the IDE.    Arguments
        nameabsolute pathname of the script (string) |