summaryrefslogtreecommitdiff
path: root/igor.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
committerNed Batchelder <ned@nedbatchelder.com>2014-11-23 06:29:35 -0500
commit29356409a6827e78d3f5aa18d9a7939bee7b6fca (patch)
treeab1281f62f1be63d346707c5fc812596010bc347 /igor.py
parentf81c9233740f5c2968447dd58d1185fa24994df0 (diff)
downloadpython-coveragepy-29356409a6827e78d3f5aa18d9a7939bee7b6fca.tar.gz
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'igor.py')
-rw-r--r--igor.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/igor.py b/igor.py
index 4df94cf..2f1a2c5 100644
--- a/igor.py
+++ b/igor.py
@@ -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)