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 | b26cf4981ebc3bdbcec03386b4ee2734f5e9a444 (patch) | |
tree | f037dbb904169d1fa53d0c51961b0ee08b389e8a /coverage/backward.py | |
parent | f4b9914ab81eca5762b66446afa3fd57f84d5ec5 (diff) | |
download | python-coveragepy-git-b26cf4981ebc3bdbcec03386b4ee2734f5e9a444.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 e839f6bd..d02385ad 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.""" |