From 3a9419dce7d6ccf7de39be606eec2fc212ef4445 2023-03-30 08:32:01 From: Matthias Bussonnier Date: 2023-03-30 08:32:01 Subject: [PATCH] Update completer documentation (#13999) The docstring for suppression says that `do_not_suppress` should be a list when it should actually be a set --- diff --git a/IPython/core/completer.py b/IPython/core/completer.py index 71295c6..01af0bc 100644 --- a/IPython/core/completer.py +++ b/IPython/core/completer.py @@ -163,7 +163,7 @@ When multiple matchers simultaneously request surpression, the results from of the matcher with higher priority will be returned. Sometimes it is desirable to suppress most but not all other matchers; -this can be achieved by adding a list of identifiers of matchers which +this can be achieved by adding a set of identifiers of matchers which should not be suppressed to ``MatcherResult`` under ``do_not_suppress`` key. The suppression behaviour can is user-configurable via