diff options
author | Arun Persaud <arun@nubati.net> | 2014-02-23 15:02:47 -0800 |
---|---|---|
committer | Arun Persaud <arun@nubati.net> | 2014-02-23 15:02:47 -0800 |
commit | f91020d413823528939d52ad4af3997300158c20 (patch) | |
tree | b3c912b95123a2132cc45f82eda1b11623545f72 | |
parent | ade118d5ecae5e66d113122216e2efcb13c42899 (diff) | |
download | pylint-git-f91020d413823528939d52ad4af3997300158c20.tar.gz |
Updated FSF address.
46 files changed, 47 insertions, 47 deletions
diff --git a/__init__.py b/__init__.py index dfb4386bc..eed1b62f6 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 8d4d65e30..d0ad387c2 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 1d0aa4295..c68f2a8f1 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 6795457fe..f0087c3e9 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 fc0902192..3f0a22d33 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 11defbf51..cfd2d808f 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 367aee256..f85deb730 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 aab2320d2..e498af753 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 b0a9872a7..df4304a41 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 d1f9d3657..a6b0145d8 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 69959090c..9c49825e8 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 ff9bbc244..027d512fb 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 23e45b0eb..71fecf68f 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 8d755fa07..cf671bf6b 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 b63760c05..8cb78f4d5 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 c6bf960a1..b905d2806 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 2e3785ee7..5e9ae1b0c 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 728893eb6..78deb4e70 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 d5bb715a8..cbb14317a 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 @@ -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 09c22e6b4..17132e48e 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 24baa61e9..0e457e75c 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. @@ -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 e0754ce05..50f2c8391 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 @@ -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 795be8b46..46d0f19a6 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 360fdb19b..47c829dd9 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 5b9e8df90..78018358f 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 ea90e0505..3d12d41d3 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 d4b993781..6b35548e8 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 53064c736..e3d93efd9 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 a51e0e7bb..71d46ebab 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 614fcdbe4..bd99837be 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 25f30fd95..787095b2c 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 b6826719a..866fc29ac 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 5590dc9f1..161d11805 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 e71b26ec9..5b403943c 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 93aef0685..034948182 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 fc35c3e29..d8c4c67f0 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 f7b0e8078..d8ebd3b48 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 44278e27d..7e22a2caf 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 a42d73a4c..0f67e36c4 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 b850679e3..19d94ab42 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 8fda31d04..3dd0d0ac5 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 a61fa7fce..16c8845bf 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 @@ -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 """ |