summaryrefslogtreecommitdiff
path: root/checkers
diff options
context:
space:
mode:
authorArun Persaud <arun@nubati.net>2014-02-23 15:02:47 -0800
committerArun Persaud <arun@nubati.net>2014-02-23 15:02:47 -0800
commitfa4de8855ebfba07bfcef09f3d96a120e1bbd680 (patch)
tree49e9c5fbb6903eec108be9424087a374be0ffd28 /checkers
parentbd895c23c528ec3a7e1b917c97b349a2070b2ad2 (diff)
downloadpylint-fa4de8855ebfba07bfcef09f3d96a120e1bbd680.tar.gz
Updated FSF address.
Diffstat (limited to 'checkers')
-rw-r--r--checkers/__init__.py2
-rw-r--r--checkers/base.py2
-rw-r--r--checkers/classes.py2
-rw-r--r--checkers/design_analysis.py2
-rw-r--r--checkers/exceptions.py2
-rw-r--r--checkers/format.py2
-rw-r--r--checkers/imports.py2
-rw-r--r--checkers/logging.py2
-rw-r--r--checkers/misc.py2
-rw-r--r--checkers/newstyle.py2
-rw-r--r--checkers/raw_metrics.py2
-rw-r--r--checkers/similar.py2
-rw-r--r--checkers/stdlib.py2
-rw-r--r--checkers/strings.py2
-rw-r--r--checkers/typecheck.py2
-rw-r--r--checkers/utils.py2
-rw-r--r--checkers/variables.py2
17 files changed, 17 insertions, 17 deletions
diff --git a/checkers/__init__.py b/checkers/__init__.py
index 1d0aa42..c68f2a8 100644
--- a/checkers/__init__.py
+++ b/checkers/__init__.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""utilities methods and classes for checkers
Base id of standard checkers (used in msg and report ids):
diff --git a/checkers/base.py b/checkers/base.py
index 6795457..f0087c3 100644
--- a/checkers/base.py
+++ b/checkers/base.py
@@ -13,7 +13,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""basic checker for Python code"""
import sys
diff --git a/checkers/classes.py b/checkers/classes.py
index fc09021..3f0a22d 100644
--- a/checkers/classes.py
+++ b/checkers/classes.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""classes checker for Python code
"""
from __future__ import generators
diff --git a/checkers/design_analysis.py b/checkers/design_analysis.py
index 11defbf..cfd2d80 100644
--- a/checkers/design_analysis.py
+++ b/checkers/design_analysis.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""check for signs of poor design"""
from astroid import Function, If, InferenceError
diff --git a/checkers/exceptions.py b/checkers/exceptions.py
index 367aee2..f85deb7 100644
--- a/checkers/exceptions.py
+++ b/checkers/exceptions.py
@@ -11,7 +11,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""exceptions handling (raising, catching, exceptions classes) checker
"""
import sys
diff --git a/checkers/format.py b/checkers/format.py
index aab2320..e498af7 100644
--- a/checkers/format.py
+++ b/checkers/format.py
@@ -11,7 +11,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""Python code format's checker.
By default try to follow Guido's style guide :
diff --git a/checkers/imports.py b/checkers/imports.py
index b0a9872..df4304a 100644
--- a/checkers/imports.py
+++ b/checkers/imports.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""imports checkers for Python code"""
from logilab.common.graph import get_cycles, DotBackend
diff --git a/checkers/logging.py b/checkers/logging.py
index d1f9d36..a6b0145 100644
--- a/checkers/logging.py
+++ b/checkers/logging.py
@@ -10,7 +10,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""checker for use of Python logging
"""
diff --git a/checkers/misc.py b/checkers/misc.py
index 6995909..9c49825 100644
--- a/checkers/misc.py
+++ b/checkers/misc.py
@@ -10,7 +10,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
""" Copyright (c) 2000-2010 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr
diff --git a/checkers/newstyle.py b/checkers/newstyle.py
index ff9bbc2..027d512 100644
--- a/checkers/newstyle.py
+++ b/checkers/newstyle.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""check for new / old style related problems
"""
import sys
diff --git a/checkers/raw_metrics.py b/checkers/raw_metrics.py
index 23e45b0..71fecf6 100644
--- a/checkers/raw_metrics.py
+++ b/checkers/raw_metrics.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
""" Copyright (c) 2003-2010 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr
diff --git a/checkers/similar.py b/checkers/similar.py
index 8d755fa..cf671bf 100644
--- a/checkers/similar.py
+++ b/checkers/similar.py
@@ -13,7 +13,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""a similarities / code duplication command line tool and pylint checker
"""
import sys
diff --git a/checkers/stdlib.py b/checkers/stdlib.py
index b63760c..8cb78f4 100644
--- a/checkers/stdlib.py
+++ b/checkers/stdlib.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""Checkers for various standard library functions."""
import re
diff --git a/checkers/strings.py b/checkers/strings.py
index c6bf960..b905d28 100644
--- a/checkers/strings.py
+++ b/checkers/strings.py
@@ -14,7 +14,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""Checker for string formatting operations.
"""
diff --git a/checkers/typecheck.py b/checkers/typecheck.py
index 2e3785e..5e9ae1b 100644
--- a/checkers/typecheck.py
+++ b/checkers/typecheck.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""try to find more bugs in the code using astroid inference capabilities
"""
diff --git a/checkers/utils.py b/checkers/utils.py
index 728893e..78deb4e 100644
--- a/checkers/utils.py
+++ b/checkers/utils.py
@@ -14,7 +14,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""some functions that may be useful for various checkers
"""
diff --git a/checkers/variables.py b/checkers/variables.py
index d5bb715..cbb1431 100644
--- a/checkers/variables.py
+++ b/checkers/variables.py
@@ -12,7 +12,7 @@
#
# 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.,
-# 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
"""variables checkers for Python code
"""
import os