summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skytt? <ville.skytta@iki.fi>2016-07-31 10:42:26 +0300
committerVille Skytt? <ville.skytta@iki.fi>2016-07-31 10:42:26 +0300
commitd4c972753a44d905a8fbd845b27a522f3deca042 (patch)
tree62065b8c6758420414268ae1ea4b9894b6aaf525
parent0b9c4488728d6bd4e8f506c264902c4f13bfbf70 (diff)
downloadpython-coveragepy-spelling.tar.gz
Spelling fixesspelling
-rw-r--r--coverage/html.py2
-rw-r--r--doc/index.rst4
-rw-r--r--pylintrc6
-rw-r--r--tests/test_concurrency.py2
-rw-r--r--tests/test_html.py2
5 files changed, 8 insertions, 8 deletions
diff --git a/coverage/html.py b/coverage/html.py
index 66827d7..f04339d 100644
--- a/coverage/html.py
+++ b/coverage/html.py
@@ -387,7 +387,7 @@ class HtmlStatus(object):
json.dump(status, fout)
# Older versions of ShiningPanda look for the old name, status.dat.
- # Accomodate them if we are running under Jenkins.
+ # Accommodate them if we are running under Jenkins.
# https://issues.jenkins-ci.org/browse/JENKINS-28428
if "JENKINS_URL" in os.environ:
with open(os.path.join(directory, "status.dat"), "w") as dat:
diff --git a/doc/index.rst b/doc/index.rst
index 47d6440..44996dd 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -46,8 +46,8 @@ Coverage.py
.. :history: 20160110T125900, updated for 4.1b1
.. :history: 20160123T171300, updated for 4.1b2
.. :history: 20160510T125300, updated for 4.1b3
-.. :history: 20160521T074500, udpated for 4.1
-.. :history: 20160726T161300, udpated for 4.2
+.. :history: 20160521T074500, updated for 4.1
+.. :history: 20160726T161300, updated for 4.2
Coverage.py is a tool for measuring code coverage of Python programs. It
diff --git a/pylintrc b/pylintrc
index 39d231c..b392166 100644
--- a/pylintrc
+++ b/pylintrc
@@ -3,7 +3,7 @@
# lint Python modules using external checkers.
#
-# This is the main checker controling the other ones and the reports
+# This is the main checker controlling the other ones and the reports
# generation. It is itself both a raw checker and an astng checker in order
# to:
# * handle message activation / deactivation at the module level
@@ -97,7 +97,7 @@ reports=no
# Python expression which should return a note less than 10 (10 is the highest
# note).You have access to the variables errors warning, statement which
-# respectivly contain the number of errors / warnings messages and the total
+# respectively contain the number of errors / warnings messages and the total
# number of statements analyzed. This is used by the global evaluation report
# (R0004).
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
@@ -206,7 +206,7 @@ additional-builtins=
# checks for :
# * methods without self as first argument
# * overridden methods signature
-# * access only to existant members via self
+# * access only to existent members via self
# * attributes not defined in the __init__ method
# * supported interfaces implementation
# * unreachable code
diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py
index d438684..e36db30 100644
--- a/tests/test_concurrency.py
+++ b/tests/test_concurrency.py
@@ -311,7 +311,7 @@ SUM_RANGE_WORK = """
"""
MULTI_CODE = """
- # Above this will be a defintion of work().
+ # Above this will be a definition of work().
import multiprocessing
import os
import time
diff --git a/tests/test_html.py b/tests/test_html.py
index dda2e4b..eaf7d7d 100644
--- a/tests/test_html.py
+++ b/tests/test_html.py
@@ -419,7 +419,7 @@ class HtmlTest(HtmlTestHelpers, CoverageTest):
def test_shining_panda_fix(self):
# The ShiningPanda plugin looks for "status.dat" to find HTML reports.
- # Accomodate them, but only if we are running under Jenkins.
+ # Accommodate them, but only if we are running under Jenkins.
self.set_environ("JENKINS_URL", "Something or other")
self.create_initial_files()
self.run_coverage()