Skip to content

Commit 7add5d0

Browse files
Bump pylint to 2.11.0, update changelog
1 parent 0d246e5 commit 7add5d0

File tree

88 files changed

+139
-24
lines changed

Some content is hidden

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

88 files changed

+139
-24
lines changed

ChangeLog

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,28 @@ Pylint's ChangeLog
33
------------------
44

55

6-
What's New in Pylint 2.11.0?
6+
7+
What's New in Pylint 2.12.0?
78
============================
89
Release date: TBA
910

1011
..
11-
Put new features here and also in 'doc/whatsnew/2.11.rst'
12+
Put new features here and also in 'doc/whatsnew/2.12.rst'
13+
14+
15+
16+
What's New in Pylint 2.11.1?
17+
============================
18+
Release date: TBA
19+
20+
..
21+
Put bug fixes that should not wait for a new minor version here
22+
23+
24+
25+
What's New in Pylint 2.11.0?
26+
============================
27+
Release date: 2021-09-16
1228

1329
* The python3 porting mode checker and it's ``py3k`` option were removed. You can still find it in older pylint
1430
versions.
@@ -105,14 +121,6 @@ Release date: TBA
105121

106122
Closes #4069
107123

108-
109-
What's New in Pylint 2.10.3?
110-
============================
111-
Release date: TBA
112-
113-
..
114-
Put bug fixes that should not wait for a new minor version here
115-
116124
* The ``invalid-name`` message is now more detailed when using multiple naming style regexes.
117125

118126

doc/whatsnew/2.10.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ colored diagrams, and plantuml diagram using pyreverse. ``PYLINT_HOME`` is now `
2222
The performance of the similarity checker has been improved, as well as several small performance fixes.
2323

2424
We're going to continue working on improving performance during 2.11. We're also going to finalize
25-
a new ``possible-forgotten-f-prefix`` check that had too much false positives at release time. Check
26-
https://github.com/PyCQA/pylint/pull/4787 if you want to provide knowledge or use case :)
25+
a new ``possible-forgotten-f-prefix`` check that had too much false positives at release time.
26+
Check the `possible-forgotten-f-prefix`_ issue if you want to provide knowledge or use case :)
2727

28+
.. _possible-forgotten-f-prefix: https://github.com/PyCQA/pylint/pull/4787
2829

2930
New checkers
3031
============

doc/whatsnew/2.11.rst

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,36 @@
33
***************************
44

55
:Release: 2.11
6-
:Date: TBA
6+
:Date: 2021-09-16
77

88
Summary -- Release highlights
99
=============================
1010

11+
In 2.11, we added a new default checker to advise using f-string as it's
12+
the most efficient way of formatting strings right now. You can use
13+
`pyupgrade`_ to migrate your old ``%`` and ``format()`` automatically.
14+
15+
We added a new extension ``SetMembershipChecker`` that will advise the
16+
use of set for membership test, as it's more performant than lists or tuples.
17+
The ``CodeStyleChecker`` also got some love, check it out if you're not already
18+
using it.
19+
20+
We fixed some long standing bugs, false positives, or false negatives and
21+
we added small quality of life options like ``min-similarity-lines`` that
22+
disable the duplication check when set to 0.
23+
24+
Under the hood the code for both pylint and astroid is progressively more typed,
25+
which could be helpful to you if you're using them as libraries. In order for
26+
this new typing to make more sense and stay simple, we deprecated some functions
27+
or type that will be removed in the next major version. This is an ongoing effort.
28+
29+
The future ``possible-forgotten-f-prefix`` check still had too much false positives,
30+
and is delayed again. Check the `possible-forgotten-f-prefix`_ issue if you want
31+
to provide knowledge or use case :)
32+
33+
.. _possible-forgotten-f-prefix: https://github.com/PyCQA/pylint/pull/4787
34+
.. _pyupgrade: https://github.com/asottile/pyupgrade
35+
1136

1237
New checkers
1338
============

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.10.3-dev0"
5+
__version__ = "2.11.0"
66

77

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

pylint/checkers/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
# Copyright (c) 2019 Bruno P. Kinoshita <[email protected]>
1313
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1414
# Copyright (c) 2020 Frank Harrison <[email protected]>
15+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1516
# Copyright (c) 2021 Marc Mueller <[email protected]>
1617
# Copyright (c) 2021 Matus Valo <[email protected]>
1718

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 Daniël van Noord <[email protected]>
56
# Copyright (c) 2021 Marc Mueller <[email protected]>
67

78
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@
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 Daniël van Noord <[email protected]>
5556
# Copyright (c) 2021 Marc Mueller <[email protected]>
57+
# Copyright (c) 2021 Yilei "Dolee" Yang <[email protected]>
5658
# Copyright (c) 2021 Lorena B <[email protected]>
5759
# Copyright (c) 2021 David Liu <[email protected]>
5860
# Copyright (c) 2021 Andreas Finkler <[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 Daniël van Noord <[email protected]>
1415
# Copyright (c) 2021 Marc Mueller <[email protected]>
1516

1617
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/classes.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,11 @@
3333
# Copyright (c) 2019 Andrzej Klajnert <[email protected]>
3434
# Copyright (c) 2019 Pascal Corpet <[email protected]>
3535
# Copyright (c) 2020 GergelyKalmar <[email protected]>
36-
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
36+
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
3737
# Copyright (c) 2021 yushao2 <[email protected]>
38+
# Copyright (c) 2021 SupImDos <[email protected]>
39+
# Copyright (c) 2021 Kayran Schmidt <[email protected]>
40+
# Copyright (c) 2021 Marc Mueller <[email protected]>
3841
# Copyright (c) 2021 Yu Shao, Pang <[email protected]>
3942
# Copyright (c) 2021 Konstantina Saketou <[email protected]>
4043
# Copyright (c) 2021 James Sinclair <[email protected]>

pylint/checkers/design_analysis.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# Copyright (c) 2019 Michael Scott Cuthbert <[email protected]>
1616
# Copyright (c) 2020 hippo91 <[email protected]>
1717
# Copyright (c) 2020 Anthony Sottile <[email protected]>
18+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
19+
# Copyright (c) 2021 Melvin <[email protected]>
1820
# Copyright (c) 2021 Rebecca Turner <[email protected]>
1921
# Copyright (c) 2021 Marc Mueller <[email protected]>
2022
# Copyright (c) 2021 yushao2 <[email protected]>

pylint/checkers/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
# Copyright (c) 2020 hippo91 <[email protected]>
2727
# Copyright (c) 2020 Ram Rachum <[email protected]>
2828
# Copyright (c) 2020 Anthony Sottile <[email protected]>
29+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2930
# Copyright (c) 2021 Marc Mueller <[email protected]>
3031

3132
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/imports.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
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 Daniël van Noord <[email protected]>
3738
# Copyright (c) 2021 Marc Mueller <[email protected]>
3839
# Copyright (c) 2021 Will Shanks <[email protected]>
3940
# Copyright (c) 2021 Matus Valo <[email protected]>

pylint/checkers/logging.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
# Copyright (c) 2019 Djailla <[email protected]>
1818
# Copyright (c) 2019 Svet <[email protected]>
1919
# Copyright (c) 2020 Anthony Sottile <[email protected]>
20+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2021
# Copyright (c) 2021 Marc Mueller <[email protected]>
2122
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2223
# For details: https://github.com/PyCQA/pylint/blob/main/LICENSE

pylint/checkers/misc.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
# Copyright (c) 2020 wtracy <[email protected]>
1717
# Copyright (c) 2020 Anthony Sottile <[email protected]>
1818
# Copyright (c) 2020 Benny <[email protected]>
19+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1920
# Copyright (c) 2021 Nick Drozd <[email protected]>
2021
# Copyright (c) 2021 Marc Mueller <[email protected]>
2122
# Copyright (c) 2021 Konstantina Saketou <[email protected]>

pylint/checkers/newstyle.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1515
# Copyright (c) 2019 Robert Schweizer <[email protected]>
1616
# Copyright (c) 2020 hippo91 <[email protected]>
17+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1718
# Copyright (c) 2021 Marc Mueller <[email protected]>
1819

1920
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/checkers/raw_metrics.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1111
# Copyright (c) 2020 谭九鼎 <[email protected]>
12+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1213
# Copyright (c) 2021 Marc Mueller <[email protected]>
1314

1415
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

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 Frank Harrison <[email protected]>
1818
# Copyright (c) 2020 Eli Fine <[email protected]>
1919
# Copyright (c) 2020 Shiv Venkatasubrahmanyam <[email protected]>
20+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2021
# Copyright (c) 2021 Marc Mueller <[email protected]>
2122
# Copyright (c) 2021 Maksym Humetskyi <[email protected]>
22-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2323
# Copyright (c) 2021 bot <[email protected]>
2424
# Copyright (c) 2021 Aditya Gupta <[email protected]>
2525

pylint/checkers/stdlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
# Copyright (c) 2020 hippo91 <[email protected]>
2727
# Copyright (c) 2020 谭九鼎 <[email protected]>
2828
# Copyright (c) 2020 Anthony Sottile <[email protected]>
29-
# Copyright (c) 2021 Marc Mueller <[email protected]>
3029
# Copyright (c) 2021 Daniël van Noord <[email protected]>
30+
# Copyright (c) 2021 Marc Mueller <[email protected]>
3131
# Copyright (c) 2021 Yilei "Dolee" Yang <[email protected]>
3232
# Copyright (c) 2021 Matus Valo <[email protected]>
3333
# Copyright (c) 2021 victor <[email protected]>

pylint/checkers/strings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# Copyright (c) 2020 hippo91 <[email protected]>
2525
# Copyright (c) 2020 谭九鼎 <[email protected]>
2626
# Copyright (c) 2020 Anthony <[email protected]>
27-
# Copyright (c) 2021 Marc Mueller <[email protected]>
2827
# Copyright (c) 2021 Daniël van Noord <[email protected]>
28+
# Copyright (c) 2021 Marc Mueller <[email protected]>
2929
# Copyright (c) 2021 Peter Kolbus <[email protected]>
3030

3131

pylint/checkers/typecheck.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
# Copyright (c) 2020 Ram Rachum <[email protected]>
4343
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4444
# Copyright (c) 2020 Anubhav <[email protected]>
45+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
4546
# Copyright (c) 2021 David Liu <[email protected]>
4647
# Copyright (c) 2021 Marc Mueller <[email protected]>
4748
# Copyright (c) 2021 doranid <[email protected]>

pylint/checkers/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
# Copyright (c) 2020 Ram Rachum <[email protected]>
4242
# Copyright (c) 2020 Slavfox <[email protected]>
4343
# Copyright (c) 2020 Anthony Sottile <[email protected]>
44+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
4445
# Copyright (c) 2021 Marc Mueller <[email protected]>
4546
# Copyright (c) 2021 Nick Drozd <[email protected]>
4647
# Copyright (c) 2021 David Liu <[email protected]>
47-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
4848
# Copyright (c) 2021 Matus Valo <[email protected]>
4949
# Copyright (c) 2021 Lorena B <[email protected]>
5050
# Copyright (c) 2021 yushao2 <[email protected]>

pylint/checkers/variables.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
# Copyright (c) 2020 Andrew Simmons <[email protected]>
4040
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4141
# Copyright (c) 2020 Ashley Whetter <[email protected]>
42+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
4243
# Copyright (c) 2021 Marc Mueller <[email protected]>
4344
# Copyright (c) 2021 David Liu <[email protected]>
4445
# Copyright (c) 2021 kasium <[email protected]>

pylint/config/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
# Copyright (c) 2018 Gary Tyler McLeod <[email protected]>
2424
# Copyright (c) 2018 Konstantin <[email protected]>
2525
# Copyright (c) 2018 Nick Drozd <[email protected]>
26-
# Copyright (c) 2019, 2021 Ashley Whetter <[email protected]>
2726
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
27+
# Copyright (c) 2019, 2021 Ashley Whetter <[email protected]>
2828
# Copyright (c) 2019 Janne Rönkkö <[email protected]>
2929
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
3030
# Copyright (c) 2021 Daniël van Noord <[email protected]>

pylint/epylint.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
2121
# Copyright (c) 2020 Damien Baty <[email protected]>
2222
# Copyright (c) 2020 Anthony Sottile <[email protected]>
23+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2324
# Copyright (c) 2021 Nick Drozd <[email protected]>
2425
# Copyright (c) 2021 Marc Mueller <[email protected]>
2526
# Copyright (c) 2021 Andreas Finkler <[email protected]>

pylint/extensions/_check_docs_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1414
# Copyright (c) 2019 Danny Hermes <[email protected]>
1515
# Copyright (c) 2019 Zeb Nicholls <[email protected]>
16+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1617
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1718
# Copyright (c) 2021 Marc Mueller <[email protected]>
1819

pylint/extensions/bad_builtin.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
44
# Copyright (c) 2020 Peter Kolbus <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
6+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
67
# Copyright (c) 2021 Nick Drozd <[email protected]>
78
# Copyright (c) 2021 Marc Mueller <[email protected]>
89

pylint/extensions/broad_try_clause.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2019-2020 Tyler Thieding <[email protected]>
33
# Copyright (c) 2020 hippo91 <[email protected]>
44
# Copyright (c) 2020 Anthony Sottile <[email protected]>
5+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
56
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
67
# Copyright (c) 2021 Marc Mueller <[email protected]>
78

pylint/extensions/check_elif.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77
# Copyright (c) 2020 Anthony Sottile <[email protected]>
8+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
89
# Copyright (c) 2021 Marc Mueller <[email protected]>
910

1011
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/comparetozero.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2020 hippo91 <[email protected]>
55
# Copyright (c) 2020 Anthony Sottile <[email protected]>
6+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
67
# Copyright (c) 2021 Marc Mueller <[email protected]>
78
# Copyright (c) 2021 bernie gray <[email protected]>
89

pylint/extensions/confusing_elif.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
12
# Copyright (c) 2021 Ashley Whetter <[email protected]>
23
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
34
# Copyright (c) 2021 Marc Mueller <[email protected]>

pylint/extensions/docparams.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
# Copyright (c) 2020 Luigi <[email protected]>
1616
# Copyright (c) 2020 hippo91 <[email protected]>
1717
# Copyright (c) 2020 Damien Baty <[email protected]>
18+
# Copyright (c) 2021 SupImDos <[email protected]>
19+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1820
# Copyright (c) 2021 Marc Mueller <[email protected]>
1921
# Copyright (c) 2021 Logan Miller <[email protected]>
2022

pylint/extensions/docstyle.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
66
# Copyright (c) 2020 Anthony Sottile <[email protected]>
7+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
78
# Copyright (c) 2021 Marc Mueller <[email protected]>
89

910
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/emptystring.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2020 hippo91 <[email protected]>
55
# Copyright (c) 2020 Anthony Sottile <[email protected]>
6+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
67
# Copyright (c) 2021 Marc Mueller <[email protected]>
78

89
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/mccabe.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
55
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
66
# Copyright (c) 2020 Anthony Sottile <[email protected]>
7+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
78
# Copyright (c) 2021 Marc Mueller <[email protected]>
89

910
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/redefined_variable_type.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77
# Copyright (c) 2020 Anthony Sottile <[email protected]>
8+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
89
# Copyright (c) 2021 Marc Mueller <[email protected]>
910

1011
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/graph.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Copyright (c) 2020 Damien Baty <[email protected]>
99
# Copyright (c) 2020 谭九鼎 <[email protected]>
1010
# Copyright (c) 2020 Benjamin Graham <[email protected]>
11+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1112
# Copyright (c) 2021 Marc Mueller <[email protected]>
1213
# Copyright (c) 2021 Andreas Finkler <[email protected]>
1314
# Copyright (c) 2021 Andrew Howe <[email protected]>

pylint/interfaces.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
1111
# Copyright (c) 2020 hippo91 <[email protected]>
1212
# Copyright (c) 2020 Anthony Sottile <[email protected]>
13+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1314
# Copyright (c) 2021 Marc Mueller <[email protected]>
1415

1516
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

0 commit comments

Comments
 (0)