Clear input hook. Parameters ---------- app : optional, ignored This parameter is allowed only so that clear_inputhook() can be called with a similar interface as all the ``enable_*`` methods. But the actual value of the parameter is ignored.
(self, app=None)
| 92 | self._callback = callback |
| 93 | |
| 94 | def clear_inputhook(self, app=None): |
| 95 | """Clear input hook. |
| 96 | |
| 97 | Parameters |
| 98 | ---------- |
| 99 | app : optional, ignored |
| 100 | This parameter is allowed only so that clear_inputhook() can be |
| 101 | called with a similar interface as all the ``enable_*`` methods. But |
| 102 | the actual value of the parameter is ignored. This uniform interface |
| 103 | makes it easier to have user-level entry points in the main IPython |
| 104 | app like :meth:`enable_gui`.""" |
| 105 | self._reset() |
| 106 | |
| 107 | def clear_app_refs(self, gui=None): |
| 108 | """Clear IPython's internal reference to an application instance. |
no test coverage detected