Codebase list dh-python / 2dece16
Don't attempt to diff static libs (.a), thanks Nick Rosbrook. (closes: 1020528) Stefano Rivera 1 year, 7 months ago
2 changed file(s) with 3 addition(s) and 1 deletion(s). Raw diff Collapse all Expand all
00 dh-python (5.20220820) UNRELEASED; urgency=medium
11
22 * Run Python test suite with nose2. (closes: 1018338)
3 * Don't attempt to diff static libs (.a), thanks Nick Rosbrook.
4 (closes: 1020528)
35
46 -- Stefano Rivera <stefanor@debian.org> Sun, 21 Aug 2022 18:19:24 +0200
57
143143 else:
144144 # The files differed so we cannot collapse them.
145145 log.warn('Paths differ: %s and %s', fpath1, fpath2)
146 if options.verbose and not i.endswith('.so'):
146 if options.verbose and not i.endswith(('.so','.a')):
147147 with open(fpath1) as fp1:
148148 fromlines = fp1.readlines()
149149 with open(fpath2) as fp2: