Show More
@@ -64,6 +64,7 b' class TerminalPdb(Pdb):' | |||
|
64 | 64 | mouse_support=self.shell.mouse_support, |
|
65 | 65 | get_prompt_tokens=get_prompt_tokens, |
|
66 | 66 | display_completions_in_columns=multicolumn, |
|
67 | style=self.shell.style | |
|
67 | 68 | ) |
|
68 | 69 | self.pt_cli = CommandLineInterface(self._pt_app, eventloop=self.shell._eventloop) |
|
69 | 70 |
@@ -243,7 +243,7 b' class TerminalInteractiveShell(InteractiveShell):' | |||
|
243 | 243 | last_cell = cell |
|
244 | 244 | |
|
245 | 245 | self._style = self._make_style_from_name_or_cls(self.highlighting_style) |
|
246 | style = DynamicStyle(lambda: self._style) | |
|
246 | self.style = DynamicStyle(lambda: self._style) | |
|
247 | 247 | |
|
248 | 248 | editing_mode = getattr(EditingMode, self.editing_mode.upper()) |
|
249 | 249 | |
@@ -257,7 +257,7 b' class TerminalInteractiveShell(InteractiveShell):' | |||
|
257 | 257 | completer=IPythonPTCompleter(shell=self, |
|
258 | 258 | patch_stdout=patch_stdout), |
|
259 | 259 | enable_history_search=True, |
|
260 | style=style, | |
|
260 | style=self.style, | |
|
261 | 261 | mouse_support=self.mouse_support, |
|
262 | 262 | **self._layout_options() |
|
263 | 263 | ) |
General Comments 0
You need to be logged in to leave comments.
Login now