Results 2 comments of Brice Chardin

A suggested fix is to call `_handle_no_raise_doc`. ~~~diff diff --git a/pylint/extensions/docparams.py b/pylint/extensions/docparams.py index c3253c89e..a77ac916d 100644 --- a/pylint/extensions/docparams.py +++ b/pylint/extensions/docparams.py @@ -313,7 +313,7 @@ class DocstringParameterChecker(BaseChecker): else: missing_excs.add(expected.name) - self._add_raise_message(missing_excs, func_node)...

I tried to fix this issue in a new PR #7581. There is still a breaking change, because one test was assuming that the default value for `accept-no-raise-doc` was False,...