Skip to content

Commit aa688de

Browse files
Bump pylint to 2.9.3, update changelog
1 parent d1048a1 commit aa688de

File tree

83 files changed

+90
-15
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+90
-15
lines changed

ChangeLog

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,21 @@ Release date: TBA
1010
Put new features here and also in 'doc/whatsnew/2.10.rst'
1111

1212

13-
What's New in Pylint 2.9.3?
13+
What's New in Pylint 2.9.4?
1414
===========================
1515
Release date: TBA
1616

1717
..
1818
Put bug fixes that should not wait for a new minor version here
1919

20+
21+
What's New in Pylint 2.9.3?
22+
===========================
23+
Release date: 2021-07-01
24+
25+
2026
* Fix a crash that happened when analysing empty function with docstring
21-
using in the ``similarity`` checker.
27+
in the ``similarity`` checker.
2228

2329
Closes #4648
2430

pylint/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE
33
from typing import Tuple
44

5-
__version__ = "2.9.3-dev0"
5+
__version__ = "2.9.3"
66

77

88
def get_numversion_from_version(v: str) -> Tuple:

pylint/checkers/async.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2017 Derek Gustafson <[email protected]>
33
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2020 hippo91 <[email protected]>
5+
# Copyright (c) 2021 Marc Mueller <[email protected]>
56

67
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
78
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

pylint/checkers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
# Copyright (c) 2020 Gabriel R Sezefredo <[email protected]>
5353
# Copyright (c) 2020 Benny <[email protected]>
5454
# Copyright (c) 2020 Anubhav <[email protected]>
55-
# Copyright (c) 2021 Lorena B <[email protected]>
5655
# Copyright (c) 2021 Marc Mueller <[email protected]>
56+
# Copyright (c) 2021 Lorena B <[email protected]>
5757
# Copyright (c) 2021 David Liu <[email protected]>
5858
# Copyright (c) 2021 Andreas Finkler <[email protected]>
5959
# Copyright (c) 2021 Or Bahari <[email protected]>

pylint/checkers/base_checker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# Copyright (c) 2018 ssolanki <[email protected]>
1212
# Copyright (c) 2019 Bruno P. Kinoshita <[email protected]>
1313
# Copyright (c) 2020 hippo91 <[email protected]>
14+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1415

1516
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1617
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

pylint/checkers/imports.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
# Copyright (c) 2020 Peter Kolbus <[email protected]>
3535
# Copyright (c) 2020 Damien Baty <[email protected]>
3636
# Copyright (c) 2020 Anthony Sottile <[email protected]>
37-
# Copyright (c) 2021 yushao2 <[email protected]>
3837
# Copyright (c) 2021 Marc Mueller <[email protected]>
38+
# Copyright (c) 2021 yushao2 <[email protected]>
3939
# Copyright (c) 2021 Matus Valo <[email protected]>
4040
# Copyright (c) 2021 Andrew Howe <[email protected]>
4141

pylint/checkers/mapreduce_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2020 Frank Harrison <[email protected]>
2-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
32
# Copyright (c) 2021 Marc Mueller <[email protected]>
3+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
44

55
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
66
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

pylint/checkers/refactoring/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
# Copyright (c) 2020 lrjball <[email protected]>
3030
# Copyright (c) 2020 Yang Yang <[email protected]>
3131
# Copyright (c) 2020 Anthony Sottile <[email protected]>
32+
# Copyright (c) 2021 Marc Mueller <[email protected]>
3233

3334
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
3435
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

pylint/checkers/similar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
# Copyright (c) 2020 Eli Fine <[email protected]>
1818
# Copyright (c) 2020 hippo91 <[email protected]>
1919
# Copyright (c) 2020 Shiv Venkatasubrahmanyam <[email protected]>
20+
# Copyright (c) 2021 Marc Mueller <[email protected]>
2021
# Copyright (c) 2021 bot <[email protected]>
2122
# Copyright (c) 2021 Aditya Gupta <[email protected]>
22-
# Copyright (c) 2021 Marc Mueller <[email protected]>
2323

2424
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2525
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

pylint/checkers/spelling.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
# Copyright (c) 2020 Ganden Schaffner <[email protected]>
1818
# Copyright (c) 2020 hippo91 <[email protected]>
1919
# Copyright (c) 2020 Damien Baty <[email protected]>
20-
# Copyright (c) 2021 bot <[email protected]>
2120
# Copyright (c) 2021 Marc Mueller <[email protected]>
21+
# Copyright (c) 2021 bot <[email protected]>
2222
# Copyright (c) 2021 Andreas Finkler <[email protected]>
2323
# Copyright (c) 2021 Eli Fine <[email protected]>
2424

0 commit comments

Comments
 (0)