(self, change)
| 550 | |
| 551 | @observe('prompt_in1', 'prompt_in2', 'prompt_out', 'prompt_pad_left') |
| 552 | def _prompt_trait_changed(self, change): |
| 553 | name = change['name'] |
| 554 | warn("InteractiveShell.{name} is deprecated since IPython 4.0" |
| 555 | " and ignored since 5.0, set TerminalInteractiveShell.prompts" |
| 556 | " object directly.".format(name=name)) |
| 557 | |
| 558 | # protect against weird cases where self.config may not exist: |
| 559 | |
| 560 | show_rewritten_input = Bool(True, |
| 561 | help="Show rewritten input, e.g. for autocall." |