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