diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2011-02-01 22:46:41 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2011-02-01 22:46:41 -0500 |
commit | 67749e288dbb41ac63ab257f1be54856ecf279db (patch) | |
tree | 31caae73b86014106556931fe55b1ac78a557988 /coverage/backward.py | |
parent | d85af798072dbec82fabdf2eee56e0b2dcd805c1 (diff) | |
download | python-coveragepy-git-67749e288dbb41ac63ab257f1be54856ecf279db.tar.gz |
Pylint 0.23.0 'deprecated' disable-msg.
Diffstat (limited to 'coverage/backward.py')
-rw-r--r-- | coverage/backward.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coverage/backward.py b/coverage/backward.py index 23c0a569..1217e9ef 100644 --- a/coverage/backward.py +++ b/coverage/backward.py @@ -1,7 +1,7 @@ """Add things to old Pythons so I can pretend they are newer.""" # This file does lots of tricky stuff, so disable a bunch of lintisms. -# pylint: disable-msg=F0401,W0611,W0622 +# pylint: disable=F0401,W0611,W0622 # F0401: Unable to import blah # W0611: Unused import blah # W0622: Redefining built-in blah |