summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-27 09:24:27 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2020-04-27 09:43:39 +0200
commitbbe21518374be8700ee2bb6b26557a5377145771 (patch)
tree1a8ec33ba65cde6cf0faefcd18b6cf884a57e347
parent9a11ae2cc9b20d6f570f5a3e410354902ef818b2 (diff)
downloadpylint-git-bbe21518374be8700ee2bb6b26557a5377145771.tar.gz
Add back License not handled by a script
See https://github.com/PyCQA/pylint/pull/3516#discussion_r415567865
-rw-r--r--pylint/lint/check_parallel.py3
-rw-r--r--pylint/lint/report_functions.py3
-rw-r--r--pylint/lint/run.py3
-rw-r--r--pylint/lint/utils.py3
4 files changed, 12 insertions, 0 deletions
diff --git a/pylint/lint/check_parallel.py b/pylint/lint/check_parallel.py
index 6ac84c49f..480dae73a 100644
--- a/pylint/lint/check_parallel.py
+++ b/pylint/lint/check_parallel.py
@@ -1,3 +1,6 @@
+# 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
+
import collections
import functools
diff --git a/pylint/lint/report_functions.py b/pylint/lint/report_functions.py
index 5294b5710..8c36588d5 100644
--- a/pylint/lint/report_functions.py
+++ b/pylint/lint/report_functions.py
@@ -1,3 +1,6 @@
+# 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
+
import collections
from pylint import checkers, exceptions
diff --git a/pylint/lint/run.py b/pylint/lint/run.py
index 5eb9ebedd..b3d0b9f76 100644
--- a/pylint/lint/run.py
+++ b/pylint/lint/run.py
@@ -1,3 +1,6 @@
+# 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
+
import os
import sys
diff --git a/pylint/lint/utils.py b/pylint/lint/utils.py
index 07163e044..1f4d58bfe 100644
--- a/pylint/lint/utils.py
+++ b/pylint/lint/utils.py
@@ -1,3 +1,6 @@
+# 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
+
import contextlib
import sys