diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | doc/whatsnew/2.6.rst | 2 |
2 files changed, 4 insertions, 2 deletions
@@ -11,6 +11,10 @@ What's New in Pylint 2.6.1? =========================== Release date: TBA +* Fix bug that lead to duplicate messages when using ``--jobs 2`` or more. + + Close #3584 + * Adds option ``check-protected-access-in-special-methods`` in the ClassChecker to activate/deactivate ``protected-access`` message emission for single underscore prefixed attribute in special methods. diff --git a/doc/whatsnew/2.6.rst b/doc/whatsnew/2.6.rst index dd57fe250..56c60a5b9 100644 --- a/doc/whatsnew/2.6.rst +++ b/doc/whatsnew/2.6.rst @@ -31,8 +31,6 @@ Other Changes * Fix bug that lead to duplicate messages when using ``--jobs 2`` or more. - Close #3584 - * Adds option ``check-protected-access-in-special-methods`` in the ClassChecker to activate/deactivate ``protected-access`` message emission for single underscore prefixed attribute in special methods. |