summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authormbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2008-12-03 15:09:17 +0000
committermbligh <mbligh@592f7852-d20e-0410-864c-8624ca9c26a4>2008-12-03 15:09:17 +0000
commit088ee9dc865e2ea1a5f6d7c4fb5ba8601394872d (patch)
tree36b083983aba76507fab57868006c06f2b8eac8d /contrib
parent812a4eb1d9f566104442984855dfd9e4e96d4ebd (diff)
gps pointed out that "== and != work in most cases but its better to use is
and is not as you'll never run into a case where someone's __eq__ or __ne__ method do the wrong thing." Signed-off-by: Martin J. Bligh <mbligh@google.com> git-svn-id: svn://test.kernel.org/autotest/trunk@2533 592f7852-d20e-0410-864c-8624ca9c26a4
Diffstat (limited to 'contrib')
-rw-r--r--contrib/coverage.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/coverage.py b/contrib/coverage.py
index bd797bb8..341b383e 100644
--- a/contrib/coverage.py
+++ b/contrib/coverage.py
@@ -735,7 +735,7 @@ class coverage:
pairs = []
while i < len(statements) and j < len(lines):
if statements[i] == lines[j]:
- if start == None:
+ if start is None:
start = lines[j]
end = lines[j]
j = j + 1