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

+2
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

+1-1
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

+1-1
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

+1-1
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

+1
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

+1-1
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

+1
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

+1
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

+1-1
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

+1-1
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/pyreverse/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
66
# Copyright (c) 2016 Alexander Pervakov <[email protected]>
77
# Copyright (c) 2018 ssolanki <[email protected]>
8+
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
89
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
9-
# Copyright (c) 2019 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2020 hippo91 <[email protected]>
1111

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

pylint/reporters/ureports/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2018 ssolanki <[email protected]>
33
# Copyright (c) 2018 Sushobhit <[email protected]>
44
# Copyright (c) 2018 Anthony Sottile <[email protected]>
5-
# Copyright (c) 2019 Pierre Sassoulas <[email protected]>
5+
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77

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

pylint/reporters/ureports/nodes.py

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# Copyright (c) 2018 Nick Drozd <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
66
# Copyright (c) 2020 Anthony Sottile <[email protected]>
7+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
78

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

pylint/reporters/ureports/text_writer.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2015-2016, 2018-2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2018, 2020 Anthony Sottile <[email protected]>
3-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
3+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
66

pylint/testutils/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
# Copyright (c) 2020 hippo91 <[email protected]>
2222
# Copyright (c) 2020 谭九鼎 <[email protected]>
2323
# Copyright (c) 2020 Anthony Sottile <[email protected]>
24+
# Copyright (c) 2021 Lefteris Karapetsas <[email protected]>
2425

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

tests/benchmark/test_baseline_benchmarks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
""" Profiles basic -jX functionality """
2-
# Copyright (c) 2020 Pierre Sassoulas <[email protected]>
2+
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
33
# Copyright (c) 2020 hippo91 <[email protected]>
44
# Copyright (c) 2020 Claudiu Popa <[email protected]>
55
# Copyright (c) 2020 Frank Harrison <[email protected]>

tests/checkers/unittest_classes.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Copyright (c) 2016 Derek Gustafson <[email protected]>
66
# Copyright (c) 2018 Bryce Guinta <[email protected]>
77
# Copyright (c) 2018 ssolanki <[email protected]>
8+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
89
# Copyright (c) 2019-2020 hippo91 <[email protected]>
9-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1111

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

tests/checkers/unittest_exceptions.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Copyright (c) 2016 Derek Gustafson <[email protected]>
77
# Copyright (c) 2018 Brian Shaginaw <[email protected]>
88
# Copyright (c) 2019 Ashley Whetter <[email protected]>
9+
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
910
# Copyright (c) 2020 hippo91 <[email protected]>
10-
# Copyright (c) 2020 Pierre Sassoulas <[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/master/COPYING

tests/checkers/unittest_logging.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
# Copyright (c) 2018 Alan Chan <[email protected]>
77
# Copyright (c) 2019-2020 Ashley Whetter <[email protected]>
88
# Copyright (c) 2019 Svet <[email protected]>
9+
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
910
# Copyright (c) 2020 hippo91 <[email protected]>
10-
# Copyright (c) 2020 Pierre Sassoulas <[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/master/COPYING

tests/checkers/unittest_misc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# Copyright (c) 2016 glegoux <[email protected]>
88
# Copyright (c) 2018 Rogalski, Lukasz <[email protected]>
99
# Copyright (c) 2018 Anthony Sottile <[email protected]>
10-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
10+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1111
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1212
# Copyright (c) 2020 hippo91 <[email protected]>
1313

tests/checkers/unittest_similar.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 2016 Derek Gustafson <[email protected]>
77
# Copyright (c) 2018 Scott Worley <[email protected]>
88
# Copyright (c) 2018 Sushobhit <[email protected]>
9-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1111
# Copyright (c) 2019 Taewon D. Kim <[email protected]>
1212
# Copyright (c) 2020 Frank Harrison <[email protected]>

tests/checkers/unittest_stdlib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2015 Cezar <[email protected]>
33
# Copyright (c) 2016 Derek Gustafson <[email protected]>
44
# Copyright (c) 2017 Martin <[email protected]>
5-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
5+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
66
# Copyright (c) 2019 Ashley Whetter <[email protected]>
77
# Copyright (c) 2020 hippo91 <[email protected]>
88

tests/checkers/unittest_strings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2016 Derek Gustafson <[email protected]>
33
# Copyright (c) 2018 Lucas Cimon <[email protected]>
44
# Copyright (c) 2018 Yury Gribov <[email protected]>
5-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
5+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
66
# Copyright (c) 2019 Ashley Whetter <[email protected]>
77
# Copyright (c) 2020 hippo91 <[email protected]>
88

tests/checkers/unittest_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 2016 Derek Gustafson <[email protected]>
77
# Copyright (c) 2018 Alan Chan <[email protected]>
88
# Copyright (c) 2018 Caio Carrara <[email protected]>
9-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1111
# Copyright (c) 2019 Nathan Marrow <[email protected]>
1212
# Copyright (c) 2020 hippo91 <[email protected]>

tests/extensions/test_bad_builtin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2016-2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2016-2017 Derek Gustafson <[email protected]>
3-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
3+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2019 Ashley Whetter <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
66
# Copyright (c) 2020 Damien Baty <[email protected]>

tests/extensions/test_broad_try_clause.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Copyright (c) 2019-2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2019-2020 Tyler Thieding <[email protected]>
33
# Copyright (c) 2019 Ashley Whetter <[email protected]>
4+
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
45
# Copyright (c) 2020 hippo91 <[email protected]>
56
# Copyright (c) 2020 Damien Baty <[email protected]>
6-
# Copyright (c) 2020 Pierre Sassoulas <[email protected]>
77
# Copyright (c) 2020 Anthony Sottile <[email protected]>
88

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

tests/extensions/test_check_docs_utils.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Copyright (c) 2016, 2019 Ashley Whetter <[email protected]>
33
# Copyright (c) 2016 Derek Gustafson <[email protected]>
44
# Copyright (c) 2018 Anthony Sottile <[email protected]>
5+
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
56
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
6-
# Copyright (c) 2019 Pierre Sassoulas <[email protected]>
77
# Copyright (c) 2020 hippo91 <[email protected]>
88
# Copyright (c) 2020 Damien Baty <[email protected]>
99

tests/extensions/test_check_mccabe.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2016-2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2016-2017 Derek Gustafson <[email protected]>
33
# Copyright (c) 2016 Moises Lopez <[email protected]>
4-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
4+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
55
# Copyright (c) 2019 Ashley Whetter <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77
# Copyright (c) 2020 Damien Baty <[email protected]>

tests/extensions/test_check_raise_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) 2016 Glenn Matthews <[email protected]>
55
# Copyright (c) 2018 Jim Robertson <[email protected]>
66
# Copyright (c) 2018 Adam Dangoor <[email protected]>
7-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
7+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
88
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
99
# Copyright (c) 2019 Danny Hermes <[email protected]>
1010
# Copyright (c) 2020 hippo91 <[email protected]>

tests/extensions/test_check_return_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) 2016 Glenn Matthews <[email protected]>
55
# Copyright (c) 2016 Moises Lopez <[email protected]>
66
# Copyright (c) 2018 Sushobhit <[email protected]>
7-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
7+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
88
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
99
# Copyright (c) 2019 Zeb Nicholls <[email protected]>
1010
# Copyright (c) 2020 hippo91 <[email protected]>

tests/extensions/test_check_yields_docs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Copyright (c) 2016, 2019 Ashley Whetter <[email protected]>
33
# Copyright (c) 2016 Derek Gustafson <[email protected]>
44
# Copyright (c) 2016 Glenn Matthews <[email protected]>
5-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
5+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
66
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
77
# Copyright (c) 2020 hippo91 <[email protected]>
88

tests/extensions/test_docstyle.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2016-2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2016-2017 Derek Gustafson <[email protected]>
33
# Copyright (c) 2016 Luis Escobar <[email protected]>
4-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
4+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
55
# Copyright (c) 2019 Ashley Whetter <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77

tests/extensions/test_elseif_used.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2015-2018, 2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2015 LOGILAB S.A. (Paris, FRANCE) <[email protected]>
33
# Copyright (c) 2016-2017 Derek Gustafson <[email protected]>
4-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
4+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
55
# Copyright (c) 2019 Ashley Whetter <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
77
# Copyright (c) 2020 Damien Baty <[email protected]>

tests/extensions/test_redefined.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Copyright (c) 2016-2020 Claudiu Popa <[email protected]>
22
# Copyright (c) 2016-2017 Derek Gustafson <[email protected]>
3-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
3+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2019 Ashley Whetter <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
66
# Copyright (c) 2020 Damien Baty <[email protected]>

tests/test_check_parallel.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Puts the check_parallel system under test"""
2+
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
23
# Copyright (c) 2020 Frank Harrison <[email protected]>
3-
# Copyright (c) 2020 Pierre Sassoulas <[email protected]>
44

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

tests/unittest_pyreverse_diadefs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
66
# Copyright (c) 2016 Derek Gustafson <[email protected]>
77
# Copyright (c) 2018 Sushobhit <[email protected]>
8-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
99
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1010
# Copyright (c) 2020 hippo91 <[email protected]>
1111
# Copyright (c) 2020 Damien Baty <[email protected]>

tests/unittest_pyreverse_inspector.py

+1-1
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) 2016 Derek Gustafson <[email protected]>
3-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
3+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
44
# Copyright (c) 2019 Ashley Whetter <[email protected]>
55
# Copyright (c) 2020 hippo91 <[email protected]>
66
# Copyright (c) 2020 Damien Baty <[email protected]>

tests/unittest_reporters_json.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# Copyright (c) 2016 Derek Gustafson <[email protected]>
55
# Copyright (c) 2017 guillaume2 <[email protected]>
66
# Copyright (c) 2018 Sushobhit <[email protected]>
7-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
7+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
88
# Copyright (c) 2019 Ashley Whetter <[email protected]>
99
# Copyright (c) 2020 hippo91 <[email protected]>
1010

tests/unittest_reporting.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
77
# Copyright (c) 2016-2017 Derek Gustafson <[email protected]>
88
# Copyright (c) 2018 Sushobhit <[email protected]>
9-
# Copyright (c) 2019-2020 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1111
# Copyright (c) 2020 hippo91 <[email protected]>
1212

0 commit comments

Comments
 (0)