diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-19 18:32:08 +0300 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-07-19 18:32:08 +0300 |
commit | 587776beeee88a2e3e5b143b1dc6cdcba49e5236 (patch) | |
tree | 0429c8ebd0f829a62f19ca8f9f43794e77779fac | |
parent | 8d355577a0bc28c8ca6d94ec4723b7e9b818c047 (diff) | |
download | pylint-git-587776beeee88a2e3e5b143b1dc6cdcba49e5236.tar.gz |
Keep a consistent copyright notice across the board.
83 files changed, 173 insertions, 25 deletions
diff --git a/doc/conf.py b/doc/conf.py index 50ac9cfd2..93fdc32e8 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'Pylint' -copyright = u'2013-2014, Logilab and contributors' +copyright = u'2003-2016, Logilab' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -179,7 +179,7 @@ htmlhelp_basename = 'Pylintdoc' # (source start file, target name, title, author, documentclass [howto/manual]). latex_documents = [ ('index', 'Pylint.tex', u'Pylint Documentation', - u'Logilab and contributors', 'manual'), + u'Logilab, PyCQA and contributors', 'manual'), ] # The name of an image file (relative to this directory) to place at the top of @@ -212,5 +212,5 @@ latex_documents = [ # (source start file, name, description, authors, manual section). man_pages = [ ('index', 'pylint', u'Pylint Documentation', - [u'Logilab and contributors'], 1) + [u'Logilab, PyCQA and contributors'], 1) ] diff --git a/pylint/__init__.py b/pylint/__init__.py index 5ccc8ca66..d7bb9ab00 100644 --- a/pylint/__init__.py +++ b/pylint/__init__.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/__main__.py b/pylint/__main__.py index 5530748b2..0c4e3712e 100644 --- a/pylint/__main__.py +++ b/pylint/__main__.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/__pkginfo__.py b/pylint/__pkginfo__.py index be3c3a963..cfcaf9574 100644 --- a/pylint/__pkginfo__.py +++ b/pylint/__pkginfo__.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/__init__.py b/pylint/checkers/__init__.py index 7bdbf5f23..07b05a59a 100644 --- a/pylint/checkers/__init__.py +++ b/pylint/checkers/__init__.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/async.py b/pylint/checkers/async.py index ec25583ab..ba6c8c428 100644 --- a/pylint/checkers/async.py +++ b/pylint/checkers/async.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE).
+# http://www.logilab.fr/ -- mailto:contact@logilab.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
diff --git a/pylint/checkers/base.py b/pylint/checkers/base.py index 0f8991145..bc9185950 100644 --- a/pylint/checkers/base.py +++ b/pylint/checkers/base.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/classes.py b/pylint/checkers/classes.py index 8259b7faa..1b1ff8cec 100644 --- a/pylint/checkers/classes.py +++ b/pylint/checkers/classes.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/design_analysis.py b/pylint/checkers/design_analysis.py index d298db6d9..6fca4a384 100644 --- a/pylint/checkers/design_analysis.py +++ b/pylint/checkers/design_analysis.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/exceptions.py b/pylint/checkers/exceptions.py index e4a2d489e..57306ede8 100644 --- a/pylint/checkers/exceptions.py +++ b/pylint/checkers/exceptions.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/format.py b/pylint/checkers/format.py index 13d7862c6..8b0a68341 100644 --- a/pylint/checkers/format.py +++ b/pylint/checkers/format.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/imports.py b/pylint/checkers/imports.py index 23a982317..a3de594b6 100644 --- a/pylint/checkers/imports.py +++ b/pylint/checkers/imports.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/logging.py b/pylint/checkers/logging.py index c334bb280..ed243d112 100644 --- a/pylint/checkers/logging.py +++ b/pylint/checkers/logging.py @@ -1,3 +1,4 @@ +# Copyright (c) 2009-2016 Google, Inc. # 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 diff --git a/pylint/checkers/misc.py b/pylint/checkers/misc.py index 95512a291..5253de6ce 100644 --- a/pylint/checkers/misc.py +++ b/pylint/checkers/misc.py @@ -1,12 +1,12 @@ -# pylint: disable=W0511 +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 -""" Copyright (c) 2000-2010 LOGILAB S.A. (Paris, FRANCE). - http://www.logilab.fr/ -- mailto:contact@logilab.fr -Check source code is ascii only or has an encoding declaration (PEP 263) -""" +"""Check source code is ascii only or has an encoding declaration (PEP 263)""" + +# pylint: disable=W0511 import re diff --git a/pylint/checkers/newstyle.py b/pylint/checkers/newstyle.py index 22ee0863d..0e46eae0d 100644 --- a/pylint/checkers/newstyle.py +++ b/pylint/checkers/newstyle.py @@ -1,3 +1,5 @@ +# Copyright (c) 2005-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/python3.py b/pylint/checkers/python3.py index 414a87361..ec37ca1b3 100644 --- a/pylint/checkers/python3.py +++ b/pylint/checkers/python3.py @@ -1,3 +1,4 @@ +# Copyright (c) 2014-2016 Google, Inc. # 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 diff --git a/pylint/checkers/raw_metrics.py b/pylint/checkers/raw_metrics.py index 17d9473f5..e60ef461c 100644 --- a/pylint/checkers/raw_metrics.py +++ b/pylint/checkers/raw_metrics.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/similar.py b/pylint/checkers/similar.py index 72358f5f3..71897f44f 100644 --- a/pylint/checkers/similar.py +++ b/pylint/checkers/similar.py @@ -1,3 +1,5 @@ +# Copyright (c) 2004-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/spelling.py b/pylint/checkers/spelling.py index a7837bba9..3f748b8be 100644 --- a/pylint/checkers/spelling.py +++ b/pylint/checkers/spelling.py @@ -1,3 +1,5 @@ +# Copyright (c) 2014-2016 Michal Nowikowski +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/stdlib.py b/pylint/checkers/stdlib.py index 9510c33d4..5d8142821 100644 --- a/pylint/checkers/stdlib.py +++ b/pylint/checkers/stdlib.py @@ -1,3 +1,5 @@ +# Copyright (c) 2012-2016 Google, Inc. +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/strings.py b/pylint/checkers/strings.py index 61ffb70ce..3100675f6 100644 --- a/pylint/checkers/strings.py +++ b/pylint/checkers/strings.py @@ -1,3 +1,7 @@ +# Copyright (c) 2009-2010 Arista Networks, Inc. - James Lingard +# Copyright (c) 2004-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.fr +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/typecheck.py b/pylint/checkers/typecheck.py index 26034e07e..25b9b71ab 100644 --- a/pylint/checkers/typecheck.py +++ b/pylint/checkers/typecheck.py @@ -1,3 +1,5 @@ +# Copyright (c) 2006-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/utils.py b/pylint/checkers/utils.py index fd40dabd8..dc9d772fd 100644 --- a/pylint/checkers/utils.py +++ b/pylint/checkers/utils.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/checkers/variables.py b/pylint/checkers/variables.py index fbde55455..354419de5 100644 --- a/pylint/checkers/variables.py +++ b/pylint/checkers/variables.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/config.py b/pylint/config.py index 5d6968bc2..10d807da9 100644 --- a/pylint/config.py +++ b/pylint/config.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/epylint.py b/pylint/epylint.py index f3cd0d04e..2ac019361 100755 --- a/pylint/epylint.py +++ b/pylint/epylint.py @@ -1,6 +1,8 @@ # -*- coding: utf-8; mode: python; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 # -*- vim:fenc=utf-8:ft=python:et:sw=4:ts=4:sts=4 +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/extensions/_check_docs_utils.py b/pylint/extensions/_check_docs_utils.py index f1884d758..1262d85ec 100644 --- a/pylint/extensions/_check_docs_utils.py +++ b/pylint/extensions/_check_docs_utils.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/extensions/bad_builtin.py b/pylint/extensions/bad_builtin.py index a7a213afc..c9cdcbec5 100644 --- a/pylint/extensions/bad_builtin.py +++ b/pylint/extensions/bad_builtin.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/extensions/check_docs.py b/pylint/extensions/check_docs.py index 73ae9775b..d6a26e268 100644 --- a/pylint/extensions/check_docs.py +++ b/pylint/extensions/check_docs.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/extensions/check_elif.py b/pylint/extensions/check_elif.py index 341710adc..99217deb9 100644 --- a/pylint/extensions/check_elif.py +++ b/pylint/extensions/check_elif.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/extensions/docparams.py b/pylint/extensions/docparams.py index 2f9d79a8e..ffd78f99f 100644 --- a/pylint/extensions/docparams.py +++ b/pylint/extensions/docparams.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/extensions/docstyle.py b/pylint/extensions/docstyle.py index 21e3d28ef..2b5a005b1 100644 --- a/pylint/extensions/docstyle.py +++ b/pylint/extensions/docstyle.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/extensions/mccabe.py b/pylint/extensions/mccabe.py index 278ce3998..86c9b5676 100644 --- a/pylint/extensions/mccabe.py +++ b/pylint/extensions/mccabe.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/graph.py b/pylint/graph.py index 05dd104a4..c3ad3e1fb 100644 --- a/pylint/graph.py +++ b/pylint/graph.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/gui.py b/pylint/gui.py index 4818c7674..6761bd95e 100644 --- a/pylint/gui.py +++ b/pylint/gui.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/interfaces.py b/pylint/interfaces.py index 5fc60c5d2..ac383ce79 100644 --- a/pylint/interfaces.py +++ b/pylint/interfaces.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/lint.py b/pylint/lint.py index 75d6c399d..69bef2b8d 100644 --- a/pylint/lint.py +++ b/pylint/lint.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/__init__.py b/pylint/pyreverse/__init__.py index 9ca1da5c6..496f0fb71 100644 --- a/pylint/pyreverse/__init__.py +++ b/pylint/pyreverse/__init__.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/diadefslib.py b/pylint/pyreverse/diadefslib.py index 43549270b..2f958ac88 100644 --- a/pylint/pyreverse/diadefslib.py +++ b/pylint/pyreverse/diadefslib.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/diagrams.py b/pylint/pyreverse/diagrams.py index 167f342d9..e5c3439d4 100644 --- a/pylint/pyreverse/diagrams.py +++ b/pylint/pyreverse/diagrams.py @@ -1,3 +1,5 @@ +# Copyright (c) 2004-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/inspector.py b/pylint/pyreverse/inspector.py index f817eda53..d45dd642a 100644 --- a/pylint/pyreverse/inspector.py +++ b/pylint/pyreverse/inspector.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/main.py b/pylint/pyreverse/main.py index 84e45525b..d37dede43 100644 --- a/pylint/pyreverse/main.py +++ b/pylint/pyreverse/main.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/utils.py b/pylint/pyreverse/utils.py index df10096a9..09fc0626f 100644 --- a/pylint/pyreverse/utils.py +++ b/pylint/pyreverse/utils.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/vcgutils.py b/pylint/pyreverse/vcgutils.py index e527e4e8b..2240ec57e 100644 --- a/pylint/pyreverse/vcgutils.py +++ b/pylint/pyreverse/vcgutils.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# Copyright (c) 2008-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/pyreverse/writer.py b/pylint/pyreverse/writer.py index f504d57f2..acd0f3702 100644 --- a/pylint/pyreverse/writer.py +++ b/pylint/pyreverse/writer.py @@ -1,4 +1,6 @@ # -*- coding: utf-8 -*- +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/reporters/__init__.py b/pylint/reporters/__init__.py index 6fd815534..2aac9b4c1 100644 --- a/pylint/reporters/__init__.py +++ b/pylint/reporters/__init__.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/reporters/json.py b/pylint/reporters/json.py index ddb5f3562..8633120e3 100644 --- a/pylint/reporters/json.py +++ b/pylint/reporters/json.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/reporters/text.py b/pylint/reporters/text.py index bad6c42f1..5cba1cb1b 100644 --- a/pylint/reporters/text.py +++ b/pylint/reporters/text.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/reporters/ureports/__init__.py b/pylint/reporters/ureports/__init__.py index d7cb582ff..6fdbd9389 100644 --- a/pylint/reporters/ureports/__init__.py +++ b/pylint/reporters/ureports/__init__.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/reporters/ureports/html_writer.py b/pylint/reporters/ureports/html_writer.py index 40cc05dbf..5c7fe8a94 100644 --- a/pylint/reporters/ureports/html_writer.py +++ b/pylint/reporters/ureports/html_writer.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/reporters/ureports/nodes.py b/pylint/reporters/ureports/nodes.py index 8dd6d22b9..0d56b35a1 100644 --- a/pylint/reporters/ureports/nodes.py +++ b/pylint/reporters/ureports/nodes.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/reporters/ureports/text_writer.py b/pylint/reporters/ureports/text_writer.py index 99aa256af..d86d3f6ce 100644 --- a/pylint/reporters/ureports/text_writer.py +++ b/pylint/reporters/ureports/text_writer.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/test_func.py b/pylint/test/test_func.py index a459da538..4ddfaf628 100644 --- a/pylint/test/test_func.py +++ b/pylint/test/test_func.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/test_functional.py b/pylint/test/test_functional.py index 539a8bbd9..231430c39 100644 --- a/pylint/test/test_functional.py +++ b/pylint/test/test_functional.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/test_import_graph.py b/pylint/test/test_import_graph.py index 0ad1770a4..441c313ce 100644 --- a/pylint/test/test_import_graph.py +++ b/pylint/test/test_import_graph.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/test_regr.py b/pylint/test/test_regr.py index c2dc7685d..3fd36f488 100644 --- a/pylint/test/test_regr.py +++ b/pylint/test/test_regr.py @@ -1,3 +1,5 @@ +# Copyright (c) 2005-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/test_self.py b/pylint/test/test_self.py index 2d85bddbe..dbc5983ff 100644 --- a/pylint/test/test_self.py +++ b/pylint/test/test_self.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_base.py b/pylint/test/unittest_checker_base.py index e5b72722f..b747a1629 100644 --- a/pylint/test/unittest_checker_base.py +++ b/pylint/test/unittest_checker_base.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_classes.py b/pylint/test/unittest_checker_classes.py index 55e8c2968..f3f0a5ca9 100644 --- a/pylint/test/unittest_checker_classes.py +++ b/pylint/test/unittest_checker_classes.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_exceptions.py b/pylint/test/unittest_checker_exceptions.py index 2233c29c2..348276252 100644 --- a/pylint/test/unittest_checker_exceptions.py +++ b/pylint/test/unittest_checker_exceptions.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_format.py b/pylint/test/unittest_checker_format.py index 3d3ce1d3d..78ec81f71 100644 --- a/pylint/test/unittest_checker_format.py +++ b/pylint/test/unittest_checker_format.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_imports.py b/pylint/test/unittest_checker_imports.py index 5ccb3b04a..05d638804 100644 --- a/pylint/test/unittest_checker_imports.py +++ b/pylint/test/unittest_checker_imports.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_logging.py b/pylint/test/unittest_checker_logging.py index f498fedc8..11fb572c5 100644 --- a/pylint/test/unittest_checker_logging.py +++ b/pylint/test/unittest_checker_logging.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_misc.py b/pylint/test/unittest_checker_misc.py index b37d90292..5a0d9a3f6 100644 --- a/pylint/test/unittest_checker_misc.py +++ b/pylint/test/unittest_checker_misc.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_python3.py b/pylint/test/unittest_checker_python3.py index 89b81cbd9..a53ee963c 100644 --- a/pylint/test/unittest_checker_python3.py +++ b/pylint/test/unittest_checker_python3.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_similar.py b/pylint/test/unittest_checker_similar.py index 358400308..a151ce8e1 100644 --- a/pylint/test/unittest_checker_similar.py +++ b/pylint/test/unittest_checker_similar.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_spelling.py b/pylint/test/unittest_checker_spelling.py index 548923285..13f131609 100644 --- a/pylint/test/unittest_checker_spelling.py +++ b/pylint/test/unittest_checker_spelling.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_stdlib.py b/pylint/test/unittest_checker_stdlib.py index b4378d94f..77086540c 100644 --- a/pylint/test/unittest_checker_stdlib.py +++ b/pylint/test/unittest_checker_stdlib.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_strings.py b/pylint/test/unittest_checker_strings.py index 34aa6c270..d37582331 100644 --- a/pylint/test/unittest_checker_strings.py +++ b/pylint/test/unittest_checker_strings.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_typecheck.py b/pylint/test/unittest_checker_typecheck.py index 3142a1923..e9f798700 100644 --- a/pylint/test/unittest_checker_typecheck.py +++ b/pylint/test/unittest_checker_typecheck.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checker_variables.py b/pylint/test/unittest_checker_variables.py index bf22963a4..3c8bea66e 100644 --- a/pylint/test/unittest_checker_variables.py +++ b/pylint/test/unittest_checker_variables.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_checkers_utils.py b/pylint/test/unittest_checkers_utils.py index d745ed9b5..2a20b47ab 100644 --- a/pylint/test/unittest_checkers_utils.py +++ b/pylint/test/unittest_checkers_utils.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_config.py b/pylint/test/unittest_config.py index b31eef010..8c764ecf7 100644 --- a/pylint/test/unittest_config.py +++ b/pylint/test/unittest_config.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_lint.py b/pylint/test/unittest_lint.py index 2d2e22b3a..e06d18200 100644 --- a/pylint/test/unittest_lint.py +++ b/pylint/test/unittest_lint.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_pyreverse_diadefs.py b/pylint/test/unittest_pyreverse_diadefs.py index 8ce2175bb..e45dc3563 100644 --- a/pylint/test/unittest_pyreverse_diadefs.py +++ b/pylint/test/unittest_pyreverse_diadefs.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_pyreverse_inspector.py b/pylint/test/unittest_pyreverse_inspector.py index af46347fe..5e6035bbb 100644 --- a/pylint/test/unittest_pyreverse_inspector.py +++ b/pylint/test/unittest_pyreverse_inspector.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_pyreverse_writer.py b/pylint/test/unittest_pyreverse_writer.py index 2bf420f2d..4fa964c28 100644 --- a/pylint/test/unittest_pyreverse_writer.py +++ b/pylint/test/unittest_pyreverse_writer.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_reporters_json.py b/pylint/test/unittest_reporters_json.py index 6702b6305..8f503f646 100644 --- a/pylint/test/unittest_reporters_json.py +++ b/pylint/test/unittest_reporters_json.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_reporting.py b/pylint/test/unittest_reporting.py index e49b14dc5..efe911248 100644 --- a/pylint/test/unittest_reporting.py +++ b/pylint/test/unittest_reporting.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/test/unittest_utils.py b/pylint/test/unittest_utils.py index ad2264ee2..5e2a82b2f 100644 --- a/pylint/test/unittest_utils.py +++ b/pylint/test/unittest_utils.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/testutils.py b/pylint/testutils.py index 8a6cbd320..5e3d5386b 100644 --- a/pylint/testutils.py +++ b/pylint/testutils.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 diff --git a/pylint/utils.py b/pylint/utils.py index a4152c8d2..dd214032b 100644 --- a/pylint/utils.py +++ b/pylint/utils.py @@ -1,3 +1,5 @@ +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 @@ -1,23 +1,11 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # pylint: disable=W0404,W0622,W0704,W0613 -# copyright 2003-2013 LOGILAB S.A. (Paris, FRANCE), all rights reserved. -# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr -# -# This file is part of pylint. -# -# pylint is free software: you can redistribute it and/or modify it under -# the terms of the GNU Lesser General Public License as published by the Free -# Software Foundation, either version 2.1 of the License, or (at your option) any -# later version. -# -# pylint is distributed in the hope that it will be useful, but WITHOUT -# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS -# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more -# details. -# -# You should have received a copy of the GNU Lesser General Public License along -# with pylint. If not, see <http://www.gnu.org/licenses/>. +# Copyright (c) 2003-2016 LOGILAB S.A. (Paris, FRANCE). +# http://www.logilab.fr/ -- mailto:contact@logilab.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 + """Generic Setup script, takes package info from __pkginfo__.py file. """ from __future__ import absolute_import, print_function |