Skip to content

Commit 5071831

Browse files
authored
Merge pull request #3783 from PyCQA/2.6
2.6
2 parents 52fd8e1 + 1f7c29c commit 5071831

File tree

97 files changed

+153
-97
lines changed

Some content is hidden

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

97 files changed

+153
-97
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Pylint's ChangeLog
55
What's New in Pylint 2.6.0?
66
===========================
77

8-
Release date: TBA
8+
Release date: 2020-08-20
99

1010
* Fix various scope-related bugs in ``undefined-variable`` checker
1111

doc/whatsnew/2.6.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**************************
44

55
:Release: 2.6
6-
:Date: TBA
6+
:Date: 2020-08-20
77

88

99
Summary -- Release highlights

pylint/__pkginfo__.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@
1414
# Copyright (c) 2018-2019 Ashley Whetter <[email protected]>
1515
# Copyright (c) 2018 ssolanki <[email protected]>
1616
# Copyright (c) 2018 Sushobhit <[email protected]>
17-
# Copyright (c) 2019 Ville Skyttä <[email protected]>
17+
# Copyright (c) 2019-2020 Ville Skyttä <[email protected]>
1818
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1919
# Copyright (c) 2019 Dan Hemberger <[email protected]>
2020
# Copyright (c) 2019 jab <[email protected]>
21+
# Copyright (c) 2020 hippo91 <[email protected]>
22+
# Copyright (c) 2020 Damien Baty <[email protected]>
23+
# Copyright (c) 2020 Pierre Sassoulas <[email protected]>
2124

2225
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
2326
# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
@@ -30,7 +33,7 @@
3033

3134
# For an official release, use dev_version = None
3235
numversion = (2, 6, 0)
33-
dev_version = "1"
36+
dev_version = None
3437

3538
version = ".".join(str(num) for num in numversion)
3639
if dev_version is not None:

pylint/checkers/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
22
# Copyright (c) 2013-2014 Google, Inc.
33
# Copyright (c) 2013 [email protected] <[email protected]>
4-
# Copyright (c) 2014-2018 Claudiu Popa <[email protected]>
4+
# Copyright (c) 2014-2018, 2020 Claudiu Popa <[email protected]>
55
# Copyright (c) 2014 Brett Cannon <[email protected]>
66
# Copyright (c) 2014 Arun Persaud <[email protected]>
77
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>

pylint/checkers/async.py

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

pylint/checkers/base.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
# Copyright (c) 2019 Nikita Sobolev <[email protected]>
4545
# Copyright (c) 2019 Oisín Moran <[email protected]>
4646
# Copyright (c) 2019 Fantix King <[email protected]>
47+
# Copyright (c) 2020 Damien Baty <[email protected]>
48+
# Copyright (c) 2020 Ram Rachum <[email protected]>
4749
# Copyright (c) 2020 Anthony Sottile <[email protected]>
4850
# Copyright (c) 2020 bernie gray <[email protected]>
4951
# Copyright (c) 2020 Gabriel R Sezefredo <[email protected]>

pylint/checkers/base_checker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
22
# Copyright (c) 2013-2014 Google, Inc.
33
# Copyright (c) 2013 [email protected] <[email protected]>
4-
# Copyright (c) 2014-2019 Claudiu Popa <[email protected]>
4+
# Copyright (c) 2014-2020 Claudiu Popa <[email protected]>
55
# Copyright (c) 2014 Brett Cannon <[email protected]>
66
# Copyright (c) 2014 Arun Persaud <[email protected]>
77
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>

pylint/checkers/design_analysis.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22
# Copyright (c) 2006, 2009-2010, 2012-2015 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
33
# Copyright (c) 2012, 2014 Google, Inc.
4-
# Copyright (c) 2014-2019 Claudiu Popa <[email protected]>
4+
# Copyright (c) 2014-2020 Claudiu Popa <[email protected]>
55
# Copyright (c) 2014 Arun Persaud <[email protected]>
66
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
77
# Copyright (c) 2016 Łukasz Rogalski <[email protected]>

pylint/checkers/exceptions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2006-2011, 2013-2014 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
33
# Copyright (c) 2011-2014 Google, Inc.
44
# Copyright (c) 2012 Tim Hatch <[email protected]>
5-
# Copyright (c) 2013-2019 Claudiu Popa <[email protected]>
5+
# Copyright (c) 2013-2020 Claudiu Popa <[email protected]>
66
# Copyright (c) 2014 Brett Cannon <[email protected]>
77
# Copyright (c) 2014 Arun Persaud <[email protected]>
88
# Copyright (c) 2015 Rene Zhang <[email protected]>
@@ -24,6 +24,7 @@
2424
# Copyright (c) 2019 Djailla <[email protected]>
2525
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
2626
# Copyright (c) 2019 Pierre Sassoulas <[email protected]>
27+
# Copyright (c) 2020 Ram Rachum <[email protected]>
2728
# Copyright (c) 2020 Anthony Sottile <[email protected]>
2829

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

pylint/checkers/format.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2006-2014 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
33
# Copyright (c) 2012-2015 Google, Inc.
44
# Copyright (c) 2013 moxian <[email protected]>
5-
# Copyright (c) 2014-2019 Claudiu Popa <[email protected]>
5+
# Copyright (c) 2014-2020 Claudiu Popa <[email protected]>
66
# Copyright (c) 2014 frost-nzcr4 <[email protected]>
77
# Copyright (c) 2014 Brett Cannon <[email protected]>
88
# Copyright (c) 2014 Michal Nowikowski <[email protected]>
@@ -16,12 +16,13 @@
1616
# Copyright (c) 2016 Petr Pulc <[email protected]>
1717
# Copyright (c) 2016 Moises Lopez <[email protected]>
1818
# Copyright (c) 2016 Ashley Whetter <[email protected]>
19-
# Copyright (c) 2017, 2019 hippo91 <[email protected]>
2019
# Copyright (c) 2017-2018 Bryce Guinta <[email protected]>
20+
# Copyright (c) 2017, 2019 hippo91 <[email protected]>
2121
# Copyright (c) 2017 Krzysztof Czapla <[email protected]>
2222
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
2323
# Copyright (c) 2017 James M. Allen <[email protected]>
2424
# Copyright (c) 2017 vinnyrose <[email protected]>
25+
# Copyright (c) 2018, 2020 Bryce Guinta <[email protected]>
2526
# Copyright (c) 2018-2020 Pierre Sassoulas <[email protected]>
2627
# Copyright (c) 2018 Pierre Sassoulas <[email protected]>
2728
# Copyright (c) 2018, 2020 Anthony Sottile <[email protected]>
@@ -30,7 +31,6 @@
3031
# Copyright (c) 2018 Natalie Serebryakova <[email protected]>
3132
# Copyright (c) 2018 ssolanki <[email protected]>
3233
# Copyright (c) 2018 Marcus Näslund <[email protected]>
33-
# Copyright (c) 2018 Bryce Guinta <[email protected]>
3434
# Copyright (c) 2018 Mike Frysinger <[email protected]>
3535
# Copyright (c) 2018 Fureigh <[email protected]>
3636
# Copyright (c) 2018 Andreas Freimuth <[email protected]>

0 commit comments

Comments
 (0)