Home | History | Annotate | Download | only in idlelib

Lines Matching refs:rpcclt

338 def start_remote_debugger(rpcclt, pyshell):
354 idb_adap_oid = rpcclt.remotecall("exec", "start_the_debugger",\
356 idb_proxy = IdbProxy(rpcclt, pyshell, idb_adap_oid)
358 gui_adap = GUIAdapter(rpcclt, gui)
359 rpcclt.register(gui_adap_oid, gui_adap)
362 def close_remote_debugger(rpcclt):
371 close_subprocess_debugger(rpcclt)
372 rpcclt.unregister(gui_adap_oid)
374 def close_subprocess_debugger(rpcclt):
375 rpcclt.remotecall("exec", "stop_the_debugger", (idb_adap_oid,), {})
377 def restart_subprocess_debugger(rpcclt):
378 idb_adap_oid_ret = rpcclt.remotecall("exec", "start_the_debugger",\