(self, change)
| 1041 | |
| 1042 | @observe('limit_to__all__') |
| 1043 | def _limit_to_all_changed(self, change): |
| 1044 | warnings.warn('`IPython.core.IPCompleter.limit_to__all__` configuration ' |
| 1045 | 'value has been deprecated since IPython 5.0, will be made to have ' |
| 1046 | 'no effects and then removed in future version of IPython.', |
| 1047 | UserWarning) |
| 1048 | |
| 1049 | def __init__(self, shell=None, namespace=None, global_namespace=None, |
| 1050 | use_readline=_deprecation_readline_sentinel, config=None, **kwargs): |