diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2016-06-01 16:11:29 +0100 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2016-06-01 16:25:07 +0100 |
commit | 8322781baae85391b04ae80c3de18be2efe7dc4b (patch) | |
tree | 329acfda2f717b2dbbda814decb12c4d236da6f8 /pylint/checkers/async.py | |
parent | 1ab47902b75882b21d501c78f2e55566c24e71f7 (diff) | |
download | pylint-git-8322781baae85391b04ae80c3de18be2efe7dc4b.tar.gz |
Add the new shorter license header, including to missing files. Close #894.
Diffstat (limited to 'pylint/checkers/async.py')
-rw-r--r-- | pylint/checkers/async.py | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/pylint/checkers/async.py b/pylint/checkers/async.py index 16faac9e8..ec25583ab 100644 --- a/pylint/checkers/async.py +++ b/pylint/checkers/async.py @@ -1,18 +1,6 @@ -# Copyright (c) 2003-2015 LOGILAB S.A. (Paris, FRANCE).
-# http://www.logilab.fr/ -- mailto:contact@logilab.fr
-#
-# This program is free software; you can redistribute it and/or modify it under
-# the terms of the GNU General Public License as published by the Free Software
-# Foundation; either version 2 of the License, or (at your option) any later
-# version.
-#
-# This program 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 General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+# 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
+
"""Checker for anything related to the async protocol (PEP 492)."""
import astroid
|