Skip to content

Commit 391c8aa

Browse files
Update copyright notice with copyrite
1 parent 9426cf7 commit 391c8aa

Some content is hidden

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

51 files changed

+48
-63
lines changed

pylint/__pkginfo__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# Copyright (c) 2006-2015 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
2-
# Copyright (c) 2010 Julien Jehannet <[email protected]>
32
# Copyright (c) 2013-2014 Google, Inc.
43
# Copyright (c) 2014-2020 Claudiu Popa <[email protected]>
54
# Copyright (c) 2014 Brett Cannon <[email protected]>

pylint/checkers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
88
# Copyright (c) 2016 Moises Lopez <[email protected]>
99
# Copyright (c) 2017-2018 Bryce Guinta <[email protected]>
10-
# Copyright (c) 2018-2020 Pierre Sassoulas <[email protected]>
10+
# Copyright (c) 2018-2021 Pierre Sassoulas <[email protected]>
1111
# Copyright (c) 2018 ssolanki <[email protected]>
1212
# Copyright (c) 2019 Bruno P. Kinoshita <[email protected]>
1313
# Copyright (c) 2020 Frank Harrison <[email protected]>

pylint/checkers/async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2015-2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2017 Derek Gustafson <[email protected]>
3-
# Copyright (c) 2019 Pierre Sassoulas <[email protected]>
3+
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2020 hippo91 <[email protected]>
55

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

pylint/checkers/base.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# Copyright (c) 2016 Elias Dorneles <[email protected]>
2020
# Copyright (c) 2016 Yannack <[email protected]>
2121
# Copyright (c) 2016 Alex Jurkiewicz <[email protected]>
22-
# Copyright (c) 2017 Pierre Sassoulas <pierre.sassoulas@cea.fr>
22+
# Copyright (c) 2017, 2019-2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
2323
# Copyright (c) 2017, 2019-2020 hippo91 <[email protected]>
2424
# Copyright (c) 2017 danields <[email protected]>
2525
# Copyright (c) 2017 Jacques Kvam <[email protected]>
@@ -36,7 +36,6 @@
3636
# Copyright (c) 2018 Mike Frysinger <[email protected]>
3737
# Copyright (c) 2018 Chris Lamb <[email protected]>
3838
# Copyright (c) 2018 glmdgrielson <[email protected]>
39-
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
4039
# Copyright (c) 2019 Daniel Draper <[email protected]>
4140
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
4241
# Copyright (c) 2019 Niko Wenselowski <[email protected]>

pylint/checkers/format.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
# Copyright (c) 2017 James M. Allen <[email protected]>
2323
# Copyright (c) 2017 vinnyrose <[email protected]>
2424
# Copyright (c) 2018-2021 Pierre Sassoulas <[email protected]>
25-
# Copyright (c) 2018 Pierre Sassoulas <[email protected]>
2625
# Copyright (c) 2018, 2020 Bryce Guinta <[email protected]>
2726
# Copyright (c) 2018, 2020 Anthony Sottile <[email protected]>
2827
# Copyright (c) 2018 Lucas Cimon <[email protected]>

pylint/checkers/mapreduce_checker.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# Copyright (c) 2020 Frank Harrison <[email protected]>
2+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
23

34
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
45
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING

pylint/checkers/newstyle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
# Copyright (c) 2018 Lucas Cimon <[email protected]>
1111
# Copyright (c) 2018 Natalie Serebryakova <[email protected]>
1212
# Copyright (c) 2018 ssolanki <[email protected]>
13+
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
1314
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1415
# Copyright (c) 2019 Robert Schweizer <[email protected]>
15-
# Copyright (c) 2019 Pierre Sassoulas <[email protected]>
1616
# Copyright (c) 2020 hippo91 <[email protected]>
1717

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

pylint/checkers/raw_metrics.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@
1313
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
1414
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
1515

16-
""" Copyright (c) 2003-2010 LOGILAB S.A. (Paris, FRANCE).
17-
https://www.logilab.fr/ -- mailto:[email protected]
18-
19-
Raw metrics checker
20-
"""
21-
2216
import tokenize
2317
from typing import Any
2418

pylint/checkers/strings.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
# Copyright (c) 2009 Charles Hebert <[email protected]>
2-
# Copyright (c) 2010-2014 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
1+
# Copyright (c) 2009-2014 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
32
# Copyright (c) 2010 Daniel Harding <[email protected]>
43
# Copyright (c) 2012-2014 Google, Inc.
54
# Copyright (c) 2013-2020 Claudiu Popa <[email protected]>

pylint/checkers/typecheck.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
# Copyright (c) 2020 Ram Rachum <[email protected]>
4242
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4343
# Copyright (c) 2020 Anubhav <[email protected]>
44+
# Copyright (c) 2021 Ikraduya Edian <[email protected]>
4445
# Copyright (c) 2021 Marc Mueller <[email protected]>
4546

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

0 commit comments

Comments
 (0)