diff options
author | Pierre Sassoulas <pierre.sassoulas@gmail.com> | 2023-03-03 14:33:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-03 14:33:12 +0100 |
commit | 6846a1371be7dbbd836124b3b8506b95d24bf9f8 (patch) | |
tree | fe9a56f5f2a1fdde381180ebf8b46ce7ec6831c7 | |
parent | 7f24c414a3b4ec2af92e3eddaeb5a26207e4fe10 (diff) | |
parent | 2b28cb8b90a5180745bf28321412c5e04d8d8b3a (diff) | |
download | pylint-git-6846a1371be7dbbd836124b3b8506b95d24bf9f8.tar.gz |
Merge maintenance 2.16.x in main (#8377)
-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 |