Show More
@@ -541,6 +541,13 b' class IPCompleter(Completer):' | |||||
541 | """, |
|
541 | """, | |
542 | ).tag(config=True) |
|
542 | ).tag(config=True) | |
543 |
|
543 | |||
|
544 | @observe('limit_to__all__') | |||
|
545 | def _limit_to_all_changed(self, change): | |||
|
546 | warnings.warn('`IPython.core.IPCompleter.limit_to__all__` configuration ' | |||
|
547 | 'value has been deprecated since IPython 5.0, will be made to have ' | |||
|
548 | 'no effects and then removed in future version of IPython.', | |||
|
549 | UserWarning) | |||
|
550 | ||||
544 | def __init__(self, shell=None, namespace=None, global_namespace=None, |
|
551 | def __init__(self, shell=None, namespace=None, global_namespace=None, | |
545 | use_readline=True, config=None, **kwargs): |
|
552 | use_readline=True, config=None, **kwargs): | |
546 | """IPCompleter() -> completer |
|
553 | """IPCompleter() -> completer |
General Comments 0
You need to be logged in to leave comments.
Login now