Skip to content

Commit ea448b8

Browse files
Bump pylint to 2.10.0, update changelog
1 parent 303654c commit ea448b8

Some content is hidden

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

49 files changed

+113
-45
lines changed

ChangeLog

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,27 @@ Pylint's ChangeLog
33
------------------
44

55

6-
What's New in Pylint 2.10.0?
6+
What's New in Pylint 2.11.0?
77
============================
88
Release date: TBA
99

1010
..
11-
Put new features here and also in 'doc/whatsnew/2.10.rst'
11+
Put new features here and also in 'doc/whatsnew/2.11.rst'
12+
13+
14+
What's New in Pylint 2.10.1?
15+
============================
16+
Release date: TBA
17+
1218
..
1319
Put bug fixes that should not wait for a new minor version here
1420

21+
22+
23+
What's New in Pylint 2.10.0?
24+
============================
25+
Release date: 2021-08-20
26+
1527
* pyreverse: add option to produce colored output.
1628

1729
Closes #4488

doc/release.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ issue labelled as blocker.
4646
- Close milestone `X.Y.Z`
4747
- Create the milestones for `X.Y.Z+1`, (or `X.Y+1.0`, and `X+1.0.0` if applicable)
4848

49-
#### Whatsnew
49+
#### What's new
5050

5151
If it's a minor release, create a new `What's new in Pylint X.Y+1` document. Add it to
5252
`doc/index.rst`. Take a look at the examples from `doc/whatsnew`.

doc/whatsnew/2.10.rst

Lines changed: 32 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,28 @@
33
***************************
44

55
:Release: 2.10
6-
:Date: TBA
6+
:Date: 2021-08-20
77

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

11+
In 2.10, we added several new default check, like ``unspecified-encoding``, ``forgotten-debug-statement`` or
12+
``use-dict-literal``. There's also a few opinionated optional one. You can now forbid while loop or
13+
profess your exclusive love of ternary expressions publicly. We promise you hours of arguing fun with
14+
your whole team if you add those to your configuration.
15+
16+
We've also fixed some long standing bugs, false positives, or missing options like ``ignore-signature`` that
17+
will now work on inner function's signatures.
18+
19+
A new option to disable the next line, ``disable-next``, has been added. It's also possible to export
20+
colored diagrams, and plantuml diagram using pyreverse. ``PYLINT_HOME`` is now ``XDG_CACHE_HOME`` if not set.
21+
22+
The performance of the similarity checker has been improved, as well as several small performance fixes.
23+
24+
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 :)
27+
1128

1229
New checkers
1330
============
@@ -24,20 +41,20 @@ New checkers
2441

2542
Closes #4365
2643

27-
* Added optional extension ``consider-ternary-expression``: Emitted whenever a variable is assigned in both branches of an if/else block.
44+
* Added ``forgotten-debug-statement``: Emitted when ``breakpoint``, ``pdb.set_trace`` or ``sys.breakpointhook`` calls are found
2845

29-
Closes # 4366
46+
Closes #3692
3047

31-
* Added optional extension ``while-used``: Emitted whenever a ``while`` loop is used.
48+
* Added ``use-sequence-for-iteration``: Emitted when iterating over an in-place defined ``set``.
3249

33-
Closes # 4367
3450

35-
* Added ``forgotten-debug-statement``: Emitted when ``breakpoint``, ``pdb.set_trace`` or ``sys.breakpointhook`` calls are found
51+
* Added ``format-string-without-interpolation`` checker: Emitted when formatting is applied to a string without any variables to be replaced
3652

37-
Closes #3692
53+
Closes #4042
3854

39-
* Added ``use-sequence-for-iteration``: Emitted when iterating over an in-place defined ``set``.
55+
* Added ``redundant-u-string-prefix`` checker: Emitted when the u prefix is added to a string
4056

57+
Closes #4102
4158

4259
Extensions
4360
==========
@@ -48,6 +65,13 @@ Extensions
4865

4966
* Emit ``consider-using-tuple`` even if list contains a ``starred`` expression.
5067

68+
* Added optional extension ``consider-ternary-expression``: Emitted whenever a variable is assigned in both branches of an if/else block.
69+
70+
Closes # 4366
71+
72+
* Added optional extension ``while-used``: Emitted whenever a ``while`` loop is used.
73+
74+
Closes # 4367
5175

5276
Other Changes
5377
=============
@@ -97,14 +121,6 @@ Other Changes
97121

98122
Closes #1682
99123

100-
* Added ``format-string-without-interpolation`` checker: Emitted when formatting is applied to a string without any variables to be replaced
101-
102-
Closes #4042
103-
104-
* Added ``redundant-u-string-prefix`` checker: Emitted when the u prefix is added to a string
105-
106-
Closes #4102
107-
108124
* Fixed ``cell-var-from-loop`` checker: handle cell variables in comprehensions within functions,
109125
and function default argument expressions. Also handle basic variable shadowing.
110126

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

77

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

pylint/checkers/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# Copyright (c) 2017 danields <[email protected]>
2525
# Copyright (c) 2017 Jacques Kvam <[email protected]>
2626
# Copyright (c) 2017 ttenhoeve-aa <[email protected]>
27-
# Copyright (c) 2018-2019 Nick Drozd <[email protected]>
27+
# Copyright (c) 2018-2019, 2021 Nick Drozd <[email protected]>
2828
# Copyright (c) 2018-2019 Ville Skyttä <[email protected]>
2929
# Copyright (c) 2018 Sergei Lebedev <[email protected]>
3030
# Copyright (c) 2018 Lucas Cimon <[email protected]>

pylint/checkers/classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@
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 Yu Shao, Pang <[email protected]>
3736
# Copyright (c) 2021 Marc Mueller <[email protected]>
3837
# Copyright (c) 2021 yushao2 <[email protected]>
38+
# Copyright (c) 2021 Yu Shao, Pang <[email protected]>
3939
# Copyright (c) 2021 Konstantina Saketou <[email protected]>
4040
# Copyright (c) 2021 James Sinclair <[email protected]>
4141
# Copyright (c) 2021 tiagohonorato <[email protected]>

pylint/checkers/design_analysis.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
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 Rebecca Turner <[email protected]>
1819
# Copyright (c) 2021 Marc Mueller <[email protected]>
1920
# Copyright (c) 2021 yushao2 <[email protected]>
2021

pylint/checkers/format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
# Copyright (c) 2019 Nick Drozd <[email protected]>
3737
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
3838
# Copyright (c) 2020 Raphael Gaschignard <[email protected]>
39+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
3940
# Copyright (c) 2021 Marc Mueller <[email protected]>
40-
# Copyright (c) 2021 Daniel van Noord <[email protected]>
4141

4242
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
4343
# 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
@@ -26,8 +26,8 @@
2626
# Copyright (c) 2018 Mike Frysinger <[email protected]>
2727
# Copyright (c) 2018 Sushobhit <[email protected]>
2828
# Copyright (c) 2018 Marianna Polatoglou <[email protected]>
29+
# Copyright (c) 2019, 2021 Nick Drozd <[email protected]>
2930
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
30-
# Copyright (c) 2019 Nick Drozd <[email protected]>
3131
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
3232
# Copyright (c) 2019 Nick Smith <[email protected]>
3333
# Copyright (c) 2019 Paul Renvoisé <[email protected]>

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 Nick Drozd <[email protected]>
1920
# Copyright (c) 2021 Marc Mueller <[email protected]>
2021
# Copyright (c) 2021 Konstantina Saketou <[email protected]>
2122

pylint/checkers/similar.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@
1313
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
1414
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1515
# Copyright (c) 2019 Taewon D. Kim <[email protected]>
16+
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1617
# Copyright (c) 2020 Frank Harrison <[email protected]>
1718
# Copyright (c) 2020 Eli Fine <[email protected]>
18-
# Copyright (c) 2020 hippo91 <[email protected]>
1919
# Copyright (c) 2020 Shiv Venkatasubrahmanyam <[email protected]>
20-
# Copyright (c) 2021 Maksym Humetskyi <[email protected]>
2120
# Copyright (c) 2021 Marc Mueller <[email protected]>
21+
# Copyright (c) 2021 Maksym Humetskyi <[email protected]>
22+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2223
# Copyright (c) 2021 bot <[email protected]>
2324
# Copyright (c) 2021 Aditya Gupta <[email protected]>
2425

pylint/checkers/spelling.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
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 Daniël van Noord <[email protected]>
2021
# Copyright (c) 2021 Marc Mueller <[email protected]>
2122
# Copyright (c) 2021 bot <[email protected]>
2223
# Copyright (c) 2021 Andreas Finkler <[email protected]>

pylint/checkers/stdlib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
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 Yilei "Dolee" Yang <[email protected]>
3029
# Copyright (c) 2021 Marc Mueller <[email protected]>
30+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
31+
# Copyright (c) 2021 Yilei "Dolee" Yang <[email protected]>
3132
# Copyright (c) 2021 Matus Valo <[email protected]>
3233
# Copyright (c) 2021 victor <[email protected]>
33-
# Copyright (c) 2021 Daniel van Noord <[email protected]>
3434

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

pylint/checkers/strings.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
# Copyright (c) 2020 谭九鼎 <[email protected]>
2626
# Copyright (c) 2020 Anthony <[email protected]>
2727
# Copyright (c) 2021 Marc Mueller <[email protected]>
28+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2829
# Copyright (c) 2021 Peter Kolbus <[email protected]>
2930

3031

pylint/checkers/typecheck.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
2121
# Copyright (c) 2017 Derek Gustafson <[email protected]>
2222
# Copyright (c) 2017 Ville Skyttä <[email protected]>
23-
# Copyright (c) 2018-2019 Nick Drozd <[email protected]>
23+
# Copyright (c) 2018-2019, 2021 Nick Drozd <[email protected]>
2424
# Copyright (c) 2018 Pablo Galindo <[email protected]>
2525
# Copyright (c) 2018 Jim Robertson <[email protected]>
2626
# Copyright (c) 2018 Lucas Cimon <[email protected]>
@@ -42,8 +42,9 @@
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 doranid <[email protected]>
45+
# Copyright (c) 2021 David Liu <[email protected]>
4646
# Copyright (c) 2021 Marc Mueller <[email protected]>
47+
# Copyright (c) 2021 doranid <[email protected]>
4748
# Copyright (c) 2021 yushao2 <[email protected]>
4849
# Copyright (c) 2021 Andrew Haigh <[email protected]>
4950
# Copyright (c) 2021 Jens H. Nielsen <[email protected]>

pylint/checkers/utils.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
# Copyright (c) 2020 Slavfox <[email protected]>
4343
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4444
# Copyright (c) 2021 Marc Mueller <[email protected]>
45+
# Copyright (c) 2021 Nick Drozd <[email protected]>
46+
# Copyright (c) 2021 David Liu <[email protected]>
47+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
4548
# Copyright (c) 2021 Matus Valo <[email protected]>
4649
# Copyright (c) 2021 Lorena B <[email protected]>
4750
# Copyright (c) 2021 yushao2 <[email protected]>

pylint/checkers/variables.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@
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 Marcin Kurczewski <[email protected]>
4342
# Copyright (c) 2021 Marc Mueller <[email protected]>
43+
# Copyright (c) 2021 David Liu <[email protected]>
44+
# Copyright (c) 2021 kasium <[email protected]>
45+
# Copyright (c) 2021 Marcin Kurczewski <[email protected]>
4446
# Copyright (c) 2021 Sergei Lebedev <[email protected]>
4547
# Copyright (c) 2021 Lorena B <[email protected]>
4648
# Copyright (c) 2021 haasea <[email protected]>

pylint/config/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727
# Copyright (c) 2019 Janne Rönkkö <[email protected]>
2828
# Copyright (c) 2019 Ashley Whetter <[email protected]>
2929
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
30+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
31+
# Copyright (c) 2021 Eisuke Kawashima <[email protected]>
3032
# Copyright (c) 2021 Marc Mueller <[email protected]>
3133

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

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 Nick Drozd <[email protected]>
2324
# Copyright (c) 2021 Marc Mueller <[email protected]>
2425
# Copyright (c) 2021 Andreas Finkler <[email protected]>
2526

pylint/exceptions.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2019 Thomas Hisch <[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 Pierre Sassoulas <[email protected]>
910
# Copyright (c) 2021 Marc Mueller <[email protected]>
1011
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html

pylint/extensions/_check_docs_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
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 Pierre Sassoulas <[email protected]>
1716
# Copyright (c) 2021 Marc Mueller <[email protected]>
17+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1818

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

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 Nick Drozd <[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/confusing_elif.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
21
# Copyright (c) 2021 Marc Mueller <[email protected]>
2+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
33
# Copyright (c) 2021 Andreas Finkler <[email protected]>
44

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

pylint/pyreverse/diagrams.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
88
# Copyright (c) 2020 hippo91 <[email protected]>
99
# Copyright (c) 2021 Marc Mueller <[email protected]>
10+
# Copyright (c) 2021 Andreas Finkler <[email protected]>
1011
# Copyright (c) 2021 Mark Byrne <[email protected]>
1112

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

pylint/pyreverse/dot_printer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) 2021 Nick Drozd <[email protected]>
2+
# Copyright (c) 2021 Marc Mueller <[email protected]>
13
# Copyright (c) 2021 Andreas Finkler <[email protected]>
24

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

pylint/pyreverse/inspector.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Copyright (c) 2020 hippo91 <[email protected]>
88
# Copyright (c) 2020 Anthony Sottile <[email protected]>
99
# Copyright (c) 2021 Marc Mueller <[email protected]>
10+
# Copyright (c) 2021 Nick Drozd <[email protected]>
1011
# Copyright (c) 2021 Mark Byrne <[email protected]>
1112

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

pylint/pyreverse/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1010
# Copyright (c) 2020 Peter Kolbus <[email protected]>
1111
# Copyright (c) 2020 hippo91 <[email protected]>
12+
# Copyright (c) 2021 Andreas Finkler <[email protected]>
1213
# Copyright (c) 2021 Marc Mueller <[email protected]>
1314
# Copyright (c) 2021 Mark Byrne <[email protected]>
14-
# Copyright (c) 2021 Andreas Finkler <[email protected]>
1515

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

pylint/pyreverse/printer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Copyright (c) 2021 Marc Mueller <[email protected]>
12
# Copyright (c) 2021 Andreas Finkler <[email protected]>
23

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

pylint/pyreverse/utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# Copyright (c) 2021 Marc Mueller <[email protected]>
1414
# Copyright (c) 2021 Mark Byrne <[email protected]>
1515
# Copyright (c) 2021 Andreas Finkler <[email protected]>
16+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1617

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

pylint/pyreverse/vcg_printer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Copyright (c) 2020 Ram Rachum <[email protected]>
77
# Copyright (c) 2020 谭九鼎 <[email protected]>
88
# Copyright (c) 2020 Anthony Sottile <[email protected]>
9-
# Copyright (c) 2021 Marc Mueller <[email protected]>
109
# Copyright (c) 2021 Andreas Finkler <[email protected]>
10+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1111

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

pylint/pyreverse/writer.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@
99
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2019 Kylian <[email protected]>
1111
# Copyright (c) 2021 Marc Mueller <[email protected]>
12-
# Copyright (c) 2021 Mark Byrne <[email protected]>
1312
# Copyright (c) 2021 Andreas Finkler <[email protected]>
13+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
14+
# Copyright (c) 2021 Mark Byrne <[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

0 commit comments

Comments
 (0)