diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:29:35 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2014-11-23 06:29:35 -0500 |
commit | 29356409a6827e78d3f5aa18d9a7939bee7b6fca (patch) | |
tree | ab1281f62f1be63d346707c5fc812596010bc347 /igor.py | |
parent | f81c9233740f5c2968447dd58d1185fa24994df0 (diff) | |
download | python-coveragepy-29356409a6827e78d3f5aa18d9a7939bee7b6fca.tar.gz |
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'igor.py')
-rw-r--r-- | igor.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -140,7 +140,7 @@ def do_zip_mods(): def do_install_egg(): """Install the egg1 egg for tests.""" # I am pretty certain there are easier ways to install eggs... - # pylint: disable=F0401,E0611,E1101 + # pylint: disable=F0401,E0611 import distutils.core cur_dir = os.getcwd() os.chdir("tests/eggsrc") @@ -223,7 +223,7 @@ def print_banner(label): version = platform.python_version() if '__pypy__' in sys.builtin_module_names: - pypy_version = sys.pypy_version_info # pylint: disable=E1101 + pypy_version = sys.pypy_version_info version += " (pypy %s)" % ".".join(str(v) for v in pypy_version) which_python = os.path.relpath(sys.executable) |