Note in example-shell.py that returning returns control to the debugger

This commit is contained in:
Aaron Meurer 2017-04-17 14:09:12 -04:00
parent 074d249d28
commit 9bf6fc0395

View File

@ -46,3 +46,4 @@ def pudb_shell(_globals, _locals):
from code import InteractiveConsole
cons = InteractiveConsole(ns)
cons.interact("Press Ctrl-D to return to the debugger")
# When the function returns, control will be returned to the debugger.