From 8e81a1b6feddb2a0642d7991ac35c7419f570bb6 Mon Sep 17 00:00:00 2001 From: Ned Batchelder Date: Sat, 25 Jul 2015 11:27:25 -0400 Subject: Better spelling. --- coverage/backward.py | 1 - coverage/parser.py | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) (limited to 'coverage') diff --git a/coverage/backward.py b/coverage/backward.py index fecb028a..5dbb411d 100644 --- a/coverage/backward.py +++ b/coverage/backward.py @@ -152,7 +152,6 @@ def import_local_file(modname): with open(modfile, 'r') as f: # pylint: disable=undefined-loop-variable - # (Using possibly undefined loop variable 'suff') mod = imp.load_module(modname, f, modfile, suff) return mod diff --git a/coverage/parser.py b/coverage/parser.py index 2841c6bb..a2b1b610 100644 --- a/coverage/parser.py +++ b/coverage/parser.py @@ -330,7 +330,7 @@ OPS_NO_JUMP = OPS_PUSH_BLOCK OP_BREAK_LOOP = _opcode('BREAK_LOOP') OP_END_FINALLY = _opcode('END_FINALLY') OP_COMPARE_OP = _opcode('COMPARE_OP') -COMPARE_EXCEPTION = 10 # just have to get this const from the code. +COMPARE_EXCEPTION = 10 # just have to get this constant from the code. OP_LOAD_CONST = _opcode('LOAD_CONST') OP_RETURN_VALUE = _opcode('RETURN_VALUE') -- cgit v1.2.1