summaryrefslogtreecommitdiff
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
parentbd895c23c528ec3a7e1b917c97b349a2070b2ad2 (diff)
downloadpylint-fa4de8855ebfba07bfcef09f3d96a120e1bbd680.tar.gz
Updated FSF address.
-rw-r--r--__init__.py2
-rw-r--r--__pkginfo__.py2
-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
-rw-r--r--config.py2
-rw-r--r--elisp/pylint.el4
-rwxr-xr-xepylint.py2
-rw-r--r--gui.py2
-rw-r--r--interfaces.py2
-rw-r--r--lint.py2
-rw-r--r--pyreverse/diadefslib.py2
-rw-r--r--pyreverse/diagrams.py2
-rw-r--r--pyreverse/main.py2
-rw-r--r--pyreverse/utils.py2
-rw-r--r--pyreverse/writer.py2
-rw-r--r--reporters/__init__.py2
-rw-r--r--reporters/html.py2
-rw-r--r--reporters/text.py2
-rw-r--r--test/smoketest.py2
-rw-r--r--test/test_format.py2
-rw-r--r--test/test_func.py2
-rw-r--r--test/test_misc.py2
-rw-r--r--test/test_regr.py2
-rw-r--r--test/test_utils.py2
-rw-r--r--test/unittest_checkers_utils.py2
-rw-r--r--test/unittest_lint.py2
-rw-r--r--test/unittest_pyreverse_diadefs.py2
-rw-r--r--test/unittest_pyreverse_writer.py2
-rw-r--r--test/unittest_reporting.py2
-rw-r--r--testutils.py2
-rw-r--r--utils.py2
46 files changed, 47 insertions, 47 deletions
diff --git a/__init__.py b/__init__.py
index dfb4386..eed1b62 100644
--- a/__init__.py
+++ b/__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.
import sys
def run_pylint():
diff --git a/__pkginfo__.py b/__pkginfo__.py
index 8d4d65e..d0ad387 100644
--- a/__pkginfo__.py
+++ b/__pkginfo__.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.
"""pylint packaging information"""
modname = distname = 'pylint'
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
diff --git a/config.py b/config.py
index 2195703..cf30c18 100644
--- a/config.py
+++ b/config.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.
"""utilities for Pylint configuration :
* pylintrc
diff --git a/elisp/pylint.el b/elisp/pylint.el
index 09c22e6..17132e4 100644
--- a/elisp/pylint.el
+++ b/elisp/pylint.el
@@ -19,8 +19,8 @@
;;
;; You should have received a copy of the GNU General Public License along
;; with your copy of Emacs; see the file COPYING. If not, write to the Free
-;; Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-;; 02111-1307, USA.
+;; Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
+;; MA 02110-1301, USA
;;; Commentary:
;;
diff --git a/epylint.py b/epylint.py
index 24baa61..0e457e7 100755
--- a/epylint.py
+++ b/epylint.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.
"""Emacs and Flymake compatible Pylint.
This script is for integration with emacs and is compatible with flymake mode.
diff --git a/gui.py b/gui.py
index 1011ceb..a882a2b 100644
--- a/gui.py
+++ b/gui.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.
"""Tkinker gui for pylint"""
import os
diff --git a/interfaces.py b/interfaces.py
index e0754ce..50f2c83 100644
--- a/interfaces.py
+++ b/interfaces.py
@@ -9,7 +9,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.
"""Interfaces for PyLint objects"""
from logilab.common.interface import Interface
diff --git a/lint.py b/lint.py
index 4cf5059..2d781b7 100644
--- a/lint.py
+++ b/lint.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.
""" %prog [options] module_or_package
Check that a module satisfies a coding standard (and more !).
diff --git a/pyreverse/diadefslib.py b/pyreverse/diadefslib.py
index 795be8b..46d0f19 100644
--- a/pyreverse/diadefslib.py
+++ b/pyreverse/diadefslib.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.
"""handle diagram generation options for class diagram or default diagrams
"""
diff --git a/pyreverse/diagrams.py b/pyreverse/diagrams.py
index 360fdb1..47c829d 100644
--- a/pyreverse/diagrams.py
+++ b/pyreverse/diagrams.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.
"""diagram objects
"""
diff --git a/pyreverse/main.py b/pyreverse/main.py
index 5b9e8df..7801835 100644
--- a/pyreverse/main.py
+++ b/pyreverse/main.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.
"""
%prog [options] <packages>
diff --git a/pyreverse/utils.py b/pyreverse/utils.py
index ea90e05..3d12d41 100644
--- a/pyreverse/utils.py
+++ b/pyreverse/utils.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.
"""
generic classes/functions for pyreverse core/extensions
"""
diff --git a/pyreverse/writer.py b/pyreverse/writer.py
index d4b9937..6b35548 100644
--- a/pyreverse/writer.py
+++ b/pyreverse/writer.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.
"""Utilities for creating VCG and Dot diagrams"""
from logilab.common.vcgutils import VCGPrinter
diff --git a/reporters/__init__.py b/reporters/__init__.py
index 53064c7..e3d93ef 100644
--- a/reporters/__init__.py
+++ b/reporters/__init__.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.
"""utilities methods and classes for reporters"""
import sys
diff --git a/reporters/html.py b/reporters/html.py
index a51e0e7..71d46eb 100644
--- a/reporters/html.py
+++ b/reporters/html.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.
"""HTML reporter"""
import sys
diff --git a/reporters/text.py b/reporters/text.py
index 614fcdb..bd99837 100644
--- a/reporters/text.py
+++ b/reporters/text.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.
"""Plain text reporters:
:text: the default one grouping messages by module
diff --git a/test/smoketest.py b/test/smoketest.py
index 25f30fd..787095b 100644
--- a/test/smoketest.py
+++ b/test/smoketest.py
@@ -9,7 +9,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.
import sys
from os.path import join, dirname, abspath
diff --git a/test/test_format.py b/test/test_format.py
index b682671..866fc29 100644
--- a/test/test_format.py
+++ b/test/test_format.py
@@ -9,7 +9,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-2011 LOGILAB S.A. (Paris, FRANCE).
http://www.logilab.fr/ -- mailto:contact@logilab.fr
diff --git a/test/test_func.py b/test/test_func.py
index 5590dc9..161d118 100644
--- a/test/test_func.py
+++ b/test/test_func.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.
"""functional/non regression tests for pylint"""
import unittest
diff --git a/test/test_misc.py b/test/test_misc.py
index e71b26e..5b40394 100644
--- a/test/test_misc.py
+++ b/test/test_misc.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.
"""
Tests for the misc checker.
"""
diff --git a/test/test_regr.py b/test/test_regr.py
index 93aef06..0349481 100644
--- a/test/test_regr.py
+++ b/test/test_regr.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.
"""non regression tests for pylint, which requires a too specific configuration
to be incorporated in the automatic functional test framework
"""
diff --git a/test/test_utils.py b/test/test_utils.py
index fc35c3e..d8c4c67 100644
--- a/test/test_utils.py
+++ b/test/test_utils.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.
from logilab.common.testlib import TestCase
from astroid import test_utils
diff --git a/test/unittest_checkers_utils.py b/test/unittest_checkers_utils.py
index f7b0e80..d8ebd3b 100644
--- a/test/unittest_checkers_utils.py
+++ b/test/unittest_checkers_utils.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.
"""test the pylint.checkers.utils module
"""
diff --git a/test/unittest_lint.py b/test/unittest_lint.py
index 44278e2..7e22a2c 100644
--- a/test/unittest_lint.py
+++ b/test/unittest_lint.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.
import sys
import os
diff --git a/test/unittest_pyreverse_diadefs.py b/test/unittest_pyreverse_diadefs.py
index a42d73a..0f67e36 100644
--- a/test/unittest_pyreverse_diadefs.py
+++ b/test/unittest_pyreverse_diadefs.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.
"""
unittest for the extensions.diadefslib modules
"""
diff --git a/test/unittest_pyreverse_writer.py b/test/unittest_pyreverse_writer.py
index b850679..19d94ab 100644
--- a/test/unittest_pyreverse_writer.py
+++ b/test/unittest_pyreverse_writer.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.
"""
unittest for visitors.diadefs and extensions.diadefslib modules
"""
diff --git a/test/unittest_reporting.py b/test/unittest_reporting.py
index 8fda31d..3dd0d0a 100644
--- a/test/unittest_reporting.py
+++ b/test/unittest_reporting.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.
import os
from os.path import join, dirname, abspath
diff --git a/testutils.py b/testutils.py
index a61fa7f..16c8845 100644
--- a/testutils.py
+++ b/testutils.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.
"""functional/non regression tests for pylint"""
import collections
diff --git a/utils.py b/utils.py
index 59e22a5..ff57905 100644
--- a/utils.py
+++ b/utils.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.
"""some various utilities and helper classes, most of them used in the
main pylint class
"""