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 /coverage/backward.py | |
parent | f81c9233740f5c2968447dd58d1185fa24994df0 (diff) | |
download | python-coveragepy-29356409a6827e78d3f5aa18d9a7939bee7b6fca.tar.gz |
Upgraded pylint to 1.4, removed useless suppressions
Diffstat (limited to 'coverage/backward.py')
-rw-r--r-- | coverage/backward.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/coverage/backward.py b/coverage/backward.py index e839f6b..d02385a 100644 --- a/coverage/backward.py +++ b/coverage/backward.py @@ -2,8 +2,6 @@ # This file does lots of tricky stuff, so disable a bunch of lintisms. # pylint: disable=redefined-builtin -# pylint: disable=import-error -# pylint: disable=no-member # pylint: disable=unused-import # pylint: disable=no-name-in-module @@ -50,7 +48,7 @@ else: if sys.version_info >= (3, 0): # Python 3.2 provides `tokenize.open`, the best way to open source files. import tokenize - open_python_source = tokenize.open # pylint: disable=E1101 + open_python_source = tokenize.open else: def open_python_source(fname): """Open a source file the best way.""" |