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
- kind
- type of debugger ("standard", "noqt" or "threads")
Returns
flag indicating success (boolean)
|
|
runcall
|
runcall ( func, *args )
Module function mimicing the Pdb interface.
Arguments
- func
- function to be called (function object)
- *args
- arguments 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
- name
- absolute pathname of the script (string)
|