summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-03-08 11:01:40 +0100
committerGitHub <noreply@github.com>2022-03-08 11:01:40 +0100
commit444e9e1a6e67dba23d050e638ae027ee44414a08 (patch)
treefb4eb437a85546e9839927f5d5db3968387d60ca /doc
parent4649153dae5d55b3ac01787a7a61b25624077526 (diff)
downloadpylint-git-444e9e1a6e67dba23d050e638ae027ee44414a08.tar.gz
Restore the useful part of the python3 checker (#5843)
* Reinstate checks from the python3 checker that are still useful for py3 Closes #5025 Co-authored-by: Daniƫl van Noord <13665637+DanielNoord@users.noreply.github.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/whatsnew/2.13.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/whatsnew/2.13.rst b/doc/whatsnew/2.13.rst
index e7fc63b88..6fe17d995 100644
--- a/doc/whatsnew/2.13.rst
+++ b/doc/whatsnew/2.13.rst
@@ -110,6 +110,12 @@ Other Changes
Closes #352
+* Reinstated checks from the python3 checker that are still useful for python 3
+ (``eq-without-hash``). This is now in the ``pylint.extensions.eq_without_hash`` optional
+ extension.
+
+ Closes #5025
+
* Fix false-negative for ``assignment-from-none`` checker with list.sort() method.
Closes #5722