From c69d93ae55b19f421c255134dfc7919f1685103e 2016-04-29 23:32:09 From: Matthias Bussonnier Date: 2016-04-29 23:32:09 Subject: [PATCH] Re enable multi line in PT-TerminalInteractiveShell Made it to false by mistake (mine) in #9423 Note that it "just" removed continuation prompt as "multiline" is just a hint for prompt_toolkit. --- diff --git a/IPython/terminal/ptshell.py b/IPython/terminal/ptshell.py index 450ba4f..6b12485 100644 --- a/IPython/terminal/ptshell.py +++ b/IPython/terminal/ptshell.py @@ -283,7 +283,7 @@ class TerminalInteractiveShell(InteractiveShell): 'reserve_space_for_menu':self.space_for_menu, 'get_prompt_tokens':self.get_prompt_tokens, 'get_continuation_tokens':self.get_continuation_tokens, - 'multiline':False, + 'multiline':True, }