Shut down subprocess debugger and Idle side of debugger RPC link Request that the RPCServer shut down the subprocess debugger and link. Unregister the GUIAdapter, which will cause a GC on the Idle process debugger and RPC link objects. (The second reference to the debugger GUI is d
(rpcclt)
| 365 | return gui |
| 366 | |
| 367 | def close_remote_debugger(rpcclt): |
| 368 | """Shut down subprocess debugger and Idle side of debugger RPC link |
| 369 | |
| 370 | Request that the RPCServer shut down the subprocess debugger and link. |
| 371 | Unregister the GUIAdapter, which will cause a GC on the Idle process |
| 372 | debugger and RPC link objects. (The second reference to the debugger GUI |
| 373 | is deleted in pyshell.close_remote_debugger().) |
| 374 | |
| 375 | """ |
| 376 | close_subprocess_debugger(rpcclt) |
| 377 | rpcclt.unregister(gui_adap_oid) |
| 378 | |
| 379 | def close_subprocess_debugger(rpcclt): |
| 380 | rpcclt.remotecall("exec", "stop_the_debugger", (idb_adap_oid,), {}) |
nothing calls this directly
no test coverage detected
searching dependent graphs…