Skip to content

Commit 5843f09

Browse files
Change for version 2.7.1
1 parent 818bc5b commit 5843f09

39 files changed

+40
-33
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ Pylint's ChangeLog
55
What's New in Pylint 2.7.1?
66
===========================
77

8+
Release date: 2021-02-23
9+
810
* Expose `UnittestLinter` in pylint.testutils
911

1012
* Don't check directories starting with '.' when using register_plugins

pylint/__pkginfo__.py

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

3434
# For an official release, use dev_version = None
3535
numversion = (2, 7, 1)
36-
dev_version = 1
36+
dev_version = None
3737

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

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/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/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 Pierre Sassoulas <[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/master/COPYING

pylint/extensions/check_docs.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# Copyright (c) 2015-2016, 2018, 2020 Claudiu Popa <[email protected]>
33
# Copyright (c) 2016 Ashley Whetter <[email protected]>
44
# Copyright (c) 2020 hippo91 <[email protected]>
5+
# Copyright (c) 2021 Pierre Sassoulas <[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/master/COPYING

pylint/extensions/comparetozero.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2016 Alexander Todorov <[email protected]>
22
# Copyright (c) 2017-2018, 2020 Claudiu Popa <[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
# Copyright (c) 2020 Anthony Sottile <[email protected]>
66

pylint/extensions/emptystring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2016 Alexander Todorov <[email protected]>
22
# Copyright (c) 2017-2018, 2020 Claudiu Popa <[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
# Copyright (c) 2020 Anthony Sottile <[email protected]>
66

0 commit comments

Comments
 (0)