From 62850ab870c76969087fdca7a86629801a22d260 2015-11-17 06:21:05 From: Matthias Bussonnier Date: 2015-11-17 06:21:05 Subject: [PATCH] Remove unused private method. Artifact of cell magics first implementation. Not used anymore. --- diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py index 13b333e..0f9f1d8 100644 --- a/IPython/core/interactiveshell.py +++ b/IPython/core/interactiveshell.py @@ -2773,13 +2773,6 @@ class InteractiveShell(SingletonConfigurable): self.showtraceback() warn('Unknown failure executing module: <%s>' % mod_name) - def _run_cached_cell_magic(self, magic_name, line): - """Special method to call a cell magic with the data stored in self. - """ - cell = self._current_cell_magic_body - self._current_cell_magic_body = None - return self.run_cell_magic(magic_name, line, cell) - def run_cell(self, raw_cell, store_history=False, silent=False, shell_futures=True): """Run a complete IPython cell.