DEPRECATED since IPython 5.0 Return a string indicating the currently active GUI or None.
(self)
| 237 | return decorator |
| 238 | |
| 239 | def current_gui(self): |
| 240 | """DEPRECATED since IPython 5.0 |
| 241 | |
| 242 | Return a string indicating the currently active GUI or None.""" |
| 243 | warn("`current_gui` is deprecated since IPython 5.0 and will be removed in future versions.", |
| 244 | DeprecationWarning, stacklevel=2) |
| 245 | return self._current_gui |
| 246 | |
| 247 | def enable_gui(self, gui=None, app=None): |
| 248 | """DEPRECATED since IPython 5.0 |
nothing calls this directly
no outgoing calls
no test coverage detected