summaryrefslogtreecommitdiff
path: root/pylint/utils
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-11 15:29:34 +0200
committerGitHub <noreply@github.com>2021-04-11 15:29:34 +0200
commitaf52033971eccecea47597ebbfaeac15773b3e1b (patch)
tree38b29bf4b2ef3edc58c7d916c9008c6e26d0cc33 /pylint/utils
parent5949e4805d932411985aeeb6e55b7c9be6ef2c21 (diff)
downloadpylint-git-af52033971eccecea47597ebbfaeac15773b3e1b.tar.gz
Rename copying to license and upgrade the setup.cfg (#4338)
Diffstat (limited to 'pylint/utils')
-rw-r--r--pylint/utils/__init__.py2
-rw-r--r--pylint/utils/ast_walker.py2
-rw-r--r--pylint/utils/file_state.py2
-rw-r--r--pylint/utils/pragma_parser.py2
-rw-r--r--pylint/utils/utils.py2
5 files changed, 5 insertions, 5 deletions
diff --git a/pylint/utils/__init__.py b/pylint/utils/__init__.py
index 76dab0ea7..1830ab839 100644
--- a/pylint/utils/__init__.py
+++ b/pylint/utils/__init__.py
@@ -36,7 +36,7 @@
# Copyright (c) 2020 Damien Baty <damien.baty@polyconseil.fr>
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
+# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
"""some various utilities and helper classes, most of them used in the
main pylint class
diff --git a/pylint/utils/ast_walker.py b/pylint/utils/ast_walker.py
index dbad0cc48..e9f801092 100644
--- a/pylint/utils/ast_walker.py
+++ b/pylint/utils/ast_walker.py
@@ -1,5 +1,5 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
+# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
import collections
diff --git a/pylint/utils/file_state.py b/pylint/utils/file_state.py
index e42ce625f..ba843691c 100644
--- a/pylint/utils/file_state.py
+++ b/pylint/utils/file_state.py
@@ -1,5 +1,5 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
+# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
import collections
diff --git a/pylint/utils/pragma_parser.py b/pylint/utils/pragma_parser.py
index b991855a9..060c6da87 100644
--- a/pylint/utils/pragma_parser.py
+++ b/pylint/utils/pragma_parser.py
@@ -1,5 +1,5 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
+# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
import re
from collections import namedtuple
diff --git a/pylint/utils/utils.py b/pylint/utils/utils.py
index 93324d078..4d4aecc1d 100644
--- a/pylint/utils/utils.py
+++ b/pylint/utils/utils.py
@@ -1,5 +1,5 @@
# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
-# For details: https://github.com/PyCQA/pylint/blob/master/COPYING
+# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
try: