In the Python debugger pdb, how do you exit interactive mode without terminating the debugging session
Using python 3.5.1 When I run a script using the python debugger module: [home]# python -m pdb myscript.py This starts a debug session: > /somepath/to/myscript.py(1)<module>() -> import os (Pdb) If I want to enter an interactive terminal from within the debug session I can issue the interact command: (Pdb) interact *interactive* >>> Now I can interact with th code as if I was in a running python interactive mode, with access to any functions or variable in scope of the script running in the debugger at the time I entered interact mode. When I issue the command to exit the interactive mode (to