diff options
author | Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com> | 2021-11-13 00:44:22 +0200 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2021-11-13 09:36:31 +0100 |
commit | 8e15c1dd9d0dc07cb9794353a32cd37d57f2d569 (patch) | |
tree | 722d718345814aa27d9d1f3550d8bb676a59f1de /ChangeLog | |
parent | 7976857b94146f6ad81ade63797905cd662238c2 (diff) | |
download | pylint-git-8e15c1dd9d0dc07cb9794353a32cd37d57f2d569.tar.gz |
Fix ``accept-no-yields/return-doc`` for partially correct docstrings
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -19,6 +19,11 @@ Release date: TBA * Fix exception when pyreverse parses ``property function`` of a class. +* Fix ``accept-no-yields-doc`` and ``accept-no-return-doc`` not allowing missing ``yield`` or + ``return`` documentation when a docstring is partially correct + + Closes #5223 + * Add an optional extension ``consider-using-any-or-all`` : Emitted when a ``for`` loop only produces a boolean and could be replaced by ``any`` or ``all`` using a generator. Also suggests a suitable any or all statement. |