DEPRECATED Moved to terminal subclass, here only to simplify the init logic.
(self)
| 2107 | #------------------------------------------------------------------------- |
| 2108 | |
| 2109 | def init_readline(self): |
| 2110 | """DEPRECATED |
| 2111 | |
| 2112 | Moved to terminal subclass, here only to simplify the init logic.""" |
| 2113 | # Set a number of methods that depend on readline to be no-op |
| 2114 | warnings.warn('`init_readline` is no-op since IPython 5.0 and is Deprecated', |
| 2115 | DeprecationWarning, stacklevel=2) |
| 2116 | self.set_custom_completer = no_op |
| 2117 | |
| 2118 | @skip_doctest |
| 2119 | def set_next_input(self, s, replace=False): |