From fa4de8855ebfba07bfcef09f3d96a120e1bbd680 Mon Sep 17 00:00:00 2001 From: Arun Persaud Date: Sun, 23 Feb 2014 15:02:47 -0800 Subject: Updated FSF address. --- __init__.py | 2 +- __pkginfo__.py | 2 +- checkers/__init__.py | 2 +- checkers/base.py | 2 +- checkers/classes.py | 2 +- checkers/design_analysis.py | 2 +- checkers/exceptions.py | 2 +- checkers/format.py | 2 +- checkers/imports.py | 2 +- checkers/logging.py | 2 +- checkers/misc.py | 2 +- checkers/newstyle.py | 2 +- checkers/raw_metrics.py | 2 +- checkers/similar.py | 2 +- checkers/stdlib.py | 2 +- checkers/strings.py | 2 +- checkers/typecheck.py | 2 +- checkers/utils.py | 2 +- checkers/variables.py | 2 +- config.py | 2 +- elisp/pylint.el | 4 ++-- epylint.py | 2 +- gui.py | 2 +- interfaces.py | 2 +- lint.py | 2 +- pyreverse/diadefslib.py | 2 +- pyreverse/diagrams.py | 2 +- pyreverse/main.py | 2 +- pyreverse/utils.py | 2 +- pyreverse/writer.py | 2 +- reporters/__init__.py | 2 +- reporters/html.py | 2 +- reporters/text.py | 2 +- test/smoketest.py | 2 +- test/test_format.py | 2 +- test/test_func.py | 2 +- test/test_misc.py | 2 +- test/test_regr.py | 2 +- test/test_utils.py | 2 +- test/unittest_checkers_utils.py | 2 +- test/unittest_lint.py | 2 +- test/unittest_pyreverse_diadefs.py | 2 +- test/unittest_pyreverse_writer.py | 2 +- test/unittest_reporting.py | 2 +- testutils.py | 2 +- utils.py | 2 +- 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] 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 """ -- cgit v1.2.1