diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2023-03-03 13:45:03 +0100 |
---|---|---|
committer | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2023-03-03 13:45:03 +0100 |
commit | 2b28cb8b90a5180745bf28321412c5e04d8d8b3a (patch) | |
tree | 3fc1c5baf839a282201488089bc2f82bd1c87a87 | |
parent | 43cc43202d3f08ec9da29d57a4655cc22ad160fa (diff) | |
parent | 08bac36eeb5006c7eb2e574049566e232bdbf5ed (diff) | |
download | pylint-git-2b28cb8b90a5180745bf28321412c5e04d8d8b3a.tar.gz |
Merge 'maintenance/2.16.x' following 2.16.3 release
-rw-r--r-- | doc/whatsnew/2/2.16/index.rst | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/doc/whatsnew/2/2.16/index.rst b/doc/whatsnew/2/2.16/index.rst index 45ff2833d..d2ad86ab3 100644 --- a/doc/whatsnew/2/2.16/index.rst +++ b/doc/whatsnew/2/2.16/index.rst @@ -32,6 +32,30 @@ Last but not least @clavedeluna and @nickdrozd became triagers, welcome to the t .. towncrier release notes start +What's new in Pylint 2.16.3? +---------------------------- +Release date: 2023-03-03 + + +False Positives Fixed +--------------------- + +- Fix false positive for ``wrong-spelling-in-comment`` with class names in a + python 2 type comment. + + Closes #8370 (`#8370 <https://github.com/PyCQA/pylint/issues/8370>`_) + + + +Other Bug Fixes +--------------- + +- Prevent emitting ``invalid-name`` for the line on which a ``global`` + statement is declared. + + Closes #8307 (`#8307 <https://github.com/PyCQA/pylint/issues/8307>`_) + + What's new in Pylint 2.16.2? ---------------------------- Release date: 2023-02-13 |