From: Han-Wen Nienhuys Date: Mon, 22 Jan 2007 23:59:47 +0000 (+0100) Subject: thinko. X-Git-Tag: release/2.11.14-1~66 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e1d0287815e625a9fef5de5a46544cf3c0470d60;p=lilypond.git thinko. --- diff --git a/buildscripts/coverage.py b/buildscripts/coverage.py index 668b6a0043..c3cf34b80a 100644 --- a/buildscripts/coverage.py +++ b/buildscripts/coverage.py @@ -70,7 +70,7 @@ class Chunk: sys.stdout.write ('%8s:%8d:%s' % (cov, n, l)) def uncovered_score (self): - return length (self) + return len (self) class SchemeChunk (Chunk): def uncovered_score (self): @@ -85,7 +85,7 @@ def read_gcov (f): ls = [] in_lines = [l for l in open (f).readlines ()] - (count_len, line_num_len) = tuple (map (len, in_lines[0].split( ':')[:2])) + (count_len, line_num_len) = tuple (map (len, in_lines[0].split (':')[:2])) for l in in_lines: c = l[:count_len].strip ()