From 853f202ee240ee194379746ac040f1fcc2e4dafd 2021-08-29 16:44:03 From: Artur Svistunov Date: 2021-08-29 16:44:03 Subject: [PATCH] Revert method name to minimize possible impact of the fix --- diff --git a/IPython/terminal/interactiveshell.py b/IPython/terminal/interactiveshell.py index df170eb..9e6a020 100644 --- a/IPython/terminal/interactiveshell.py +++ b/IPython/terminal/interactiveshell.py @@ -203,7 +203,7 @@ class TerminalInteractiveShell(InteractiveShell): @observe('editing_mode') - def _editing_mode_changed(self, change): + def _editing_mode(self, change): u_mode = change.new.upper() if self.pt_app: self.pt_app.editing_mode = getattr(EditingMode, u_mode)