summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorDaniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>2022-03-24 16:28:53 +0100
committerGitHub <noreply@github.com>2022-03-24 16:28:53 +0100
commitbb8e098f5a8c18ac68cebdae12d48138bab858b8 (patch)
tree77e6d674aaedfba033963c5be352af22ac6a1b1b /doc
parent6bbb56539f27347fc8f69733e0ebbccd2318f287 (diff)
downloadpylint-git-bb8e098f5a8c18ac68cebdae12d48138bab858b8.tar.gz
Make ``arguments-differ`` check extra parameters for default values (#5539)
Co-authored-by: Pierre Sassoulas <pierre.sassoulas@gmail.com> Co-authored-by: Jacob Walls <jacobtylerwalls@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.13.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/whatsnew/2.13.rst b/doc/whatsnew/2.13.rst
index a47516e52..47e78e520 100644
--- a/doc/whatsnew/2.13.rst
+++ b/doc/whatsnew/2.13.rst
@@ -470,6 +470,11 @@ Other Changes
* The ``testutils`` for unittests now accept ``end_lineno`` and ``end_column``. Tests
without these will trigger a ``DeprecationWarning``.
+* ``arguments-differ`` will no longer complain about method redefinitions with extra parameters
+ that have default values.
+
+ Closes #1556, #5338
+
* Disables for ``deprecated-module`` and similar warnings for stdlib features deprecated
in newer versions of Python no longer raise ``useless-suppression`` when linting with
older Python interpreters where those features are not yet deprecated.