summaryrefslogtreecommitdiff
path: root/doc/contributing.rst
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2012-11-20 05:41:41 -0500
committerNed Batchelder <ned@nedbatchelder.com>2012-11-20 05:41:41 -0500
commit56899edb4220a8540d12c482582278439396718b (patch)
treeb85879c2ae0d7f4caf591d4a3ec4dfd4a1b15e43 /doc/contributing.rst
parentbbf1219c55cc39701e02dae4324210ef9c6928c3 (diff)
downloadpython-coveragepy-56899edb4220a8540d12c482582278439396718b.tar.gz
Silence the last of the pylint warnings.
Diffstat (limited to 'doc/contributing.rst')
-rw-r--r--doc/contributing.rst12
1 files changed, 3 insertions, 9 deletions
diff --git a/doc/contributing.rst b/doc/contributing.rst
index e2882a6..23eb1ad 100644
--- a/doc/contributing.rst
+++ b/doc/contributing.rst
@@ -130,18 +130,12 @@ to possible problems::
$ make lint
pylint --rcfile=.pylintrc coverage setup.py test
- ************* Module coverage.collector
- F0401: 7,4: Unable to import 'coverage.tracer'
- E0611: 7,4: No name 'tracer' in module 'coverage'
- ************* Module coverage.parser
- W0631:532,32:ByteParser._split_into_chunks: Using possibly undefined loop variable 'bc'
- W0631:579,40:ByteParser._arcs: Using possibly undefined loop variable 'ch'
- make: [lint] Error 7 (ignored)
python -m tabnanny coverage setup.py test
python igor.py check_eol
-As you can see, a few warnings persist, don't worry about them. But clean up
-any ones you may be responsible for.
+The source is pylint-clean, even if it's because there are pragmas quieting
+some warnings. Please try to keep it that way, but don't let pylint warnings
+keep you from sending patches. I can clean them up.
Contributing