##// END OF EJS Templates
Changed type of limit_to__all__ from Enum to CBool
Tim Couper -
Show More
@@ -416,14 +416,14 b' class IPCompleter(Completer):'
416 416 When 0: nothing will be excluded.
417 417 """
418 418 )
419 limit_to__all__ = Enum((0,1), default_value=0, config=True,
419 limit_to__all__ = CBool(default_value=False, config=True,
420 420 help="""Instruct the completer to use __all__ for the completion
421 421
422 422 Specifically, when completing on ``object.<tab>``.
423 423
424 When 1: only those names in obj.__all__ will be included.
424 When True: only those names in obj.__all__ will be included.
425 425
426 When 0 [default]: the values in the __all__ attribute are ignored
426 When False [default]: the __all__ attribute is ignored
427 427 """
428 428 )
429 429
@@ -3753,13 +3753,12 b' Defaulting color scheme to \'NoColor\'"""'
3753 3753 Whether to merge completion results into a single list
3754 3754 If False, only the completion results from the first non-empty completer
3755 3755 will be returned.
3756 IPCompleter.limit_to__all__=<Enum>
3757 Current: 0
3758 Choices: (0, 1)
3756 IPCompleter.limit_to__all__=<CBool>
3757 Current: False
3759 3758 Instruct the completer to use __all__ for the completion
3760 3759 Specifically, when completing on ``object.<tab>``.
3761 When 1: only those names in obj.__all__ will be included.
3762 When 0 [default]: the values in the __all__ attribute are ignored
3760 When True: only those names in obj.__all__ will be included.
3761 When False [default]: the __all__ attribute is ignored
3763 3762 IPCompleter.greedy=<CBool>
3764 3763 Current: False
3765 3764 Activate greedy completion
General Comments 0
You need to be logged in to leave comments. Login now