summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2022-05-02 17:55:28 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2022-05-02 17:55:28 +0200
commit4435d6c532583cda447854d7273c3f90521c6d9c (patch)
treec756185aaf4f53699ef00c950f4ada6fe6106595
parentb66e77ca0af7da14bba0c0ce02f49da51c8ffdc5 (diff)
downloadpylint-git-4435d6c532583cda447854d7273c3f90521c6d9c.tar.gz
Cleanup of the changelog following 2.13.8
-rw-r--r--ChangeLog24
-rw-r--r--doc/whatsnew/2.13.rst10
-rw-r--r--doc/whatsnew/2.14.rst5
3 files changed, 0 insertions, 39 deletions
diff --git a/ChangeLog b/ChangeLog
index b07161a99..2dd709f2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -234,11 +234,6 @@ Release date: TBA
Closes #4525
-* Fix false positive for ``unsubscriptable-object`` in Python 3.8 and below for
- statements guarded by ``if TYPE_CHECKING``.
-
- Closes #3979
-
* Fix false negative for ``no-member`` when attempting to assign an instance
attribute to itself without any prior assignment.
@@ -268,25 +263,6 @@ What's New in Pylint 2.13.9?
============================
Release date: TBA
-* Fix a false positive for ``undefined-loop-variable`` for a variable used in a lambda
- inside the first of multiple loops.
-
- Closes #6419
-
-* Fix a crash when linting a file that passes an integer ``mode=`` to
- ``open``
-
- Closes #6414
-
-* Fix a false positive for ``undefined-loop-variable`` when the ``else`` of a ``for``
- loop raises or returns.
-
- Closes #5971
-
-* Fix false positive for ``unused-variable`` for classes inside functions
- and where a metaclass is provided via a call.
-
- Closes #4020
What's New in Pylint 2.13.8?
diff --git a/doc/whatsnew/2.13.rst b/doc/whatsnew/2.13.rst
index 8c291e820..895d5d369 100644
--- a/doc/whatsnew/2.13.rst
+++ b/doc/whatsnew/2.13.rst
@@ -612,20 +612,10 @@ Other Changes
Closes #5971
-* Fix false positive for ``unused-variable`` for classes inside functions
- and where a metaclass is provided via a call.
-
- Closes #4020
-
* Only raise ``not-callable`` when all the inferred values of a property are not callable.
Closes #5931
-* Fix a false positive for ``undefined-loop-variable`` when the ``else`` of a ``for``
- loop raises or returns.
-
- Closes #5971
-
* Fix false positive for ``unused-variable`` for classes inside functions
and where a metaclass is provided via a call.
diff --git a/doc/whatsnew/2.14.rst b/doc/whatsnew/2.14.rst
index 96365910c..240aa6044 100644
--- a/doc/whatsnew/2.14.rst
+++ b/doc/whatsnew/2.14.rst
@@ -245,11 +245,6 @@ Other Changes
Closes #5205
-* Fix false positive for ``unsubscriptable-object`` in Python 3.8 and below for
- statements guarded by ``if TYPE_CHECKING``.
-
- Closes #3979
-
* Fix false negative for ``no-member`` when attempting to assign an instance
attribute to itself without any prior assignment.