From 6c1938caa86e5666cab5dbebbc333daa71604cd6 2023-03-29 18:36:54 From: Ben Hamming Date: 2023-03-29 18:36:54 Subject: [PATCH] Update completer documentation 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