Drop the interative console

Signed-off-by: Pierre-Yves Chibon <pingou@pingoured.fr>
This commit is contained in:
Pierre-Yves Chibon 2020-04-22 12:53:27 +02:00
parent e1b448de09
commit 1df9b3e8cb

View file

@ -89,12 +89,4 @@ def run():
if __name__ == "__main__":
try:
main()
except KeyboardInterrupt:
from code import InteractiveConsole
InteractiveConsole(locals={"s": s}).interact(
"ENTERING THE DEBUG CONSOLE:\n s is the scheduler\n ^d to quit",
"LEAVING THE DEBUG CONSOLE",
)
main()