##// END OF EJS Templates
Merge pull request #10479 from memeplex/pdbstyle...
Thomas Kluyver -
r23572:075c197e merge
parent child Browse files
Show More
@@ -63,6 +63,7 b' class TerminalPdb(Pdb):'
63 mouse_support=self.shell.mouse_support,
63 mouse_support=self.shell.mouse_support,
64 get_prompt_tokens=get_prompt_tokens,
64 get_prompt_tokens=get_prompt_tokens,
65 display_completions_in_columns=multicolumn,
65 display_completions_in_columns=multicolumn,
66 style=self.shell.style
66 )
67 )
67 self.pt_cli = CommandLineInterface(self._pt_app, eventloop=self.shell._eventloop)
68 self.pt_cli = CommandLineInterface(self._pt_app, eventloop=self.shell._eventloop)
68
69
@@ -235,7 +235,7 b' class TerminalInteractiveShell(InteractiveShell):'
235 last_cell = cell
235 last_cell = cell
236
236
237 self._style = self._make_style_from_name_or_cls(self.highlighting_style)
237 self._style = self._make_style_from_name_or_cls(self.highlighting_style)
238 style = DynamicStyle(lambda: self._style)
238 self.style = DynamicStyle(lambda: self._style)
239
239
240 editing_mode = getattr(EditingMode, self.editing_mode.upper())
240 editing_mode = getattr(EditingMode, self.editing_mode.upper())
241
241
@@ -249,7 +249,7 b' class TerminalInteractiveShell(InteractiveShell):'
249 completer=IPythonPTCompleter(shell=self,
249 completer=IPythonPTCompleter(shell=self,
250 patch_stdout=patch_stdout),
250 patch_stdout=patch_stdout),
251 enable_history_search=True,
251 enable_history_search=True,
252 style=style,
252 style=self.style,
253 mouse_support=self.mouse_support,
253 mouse_support=self.mouse_support,
254 **self._layout_options()
254 **self._layout_options()
255 )
255 )
General Comments 0
You need to be logged in to leave comments. Login now