##// END OF EJS Templates
pure/base85: align exception type/msg on base85.c...
Patrick Mezard -
r16598:20a9d823 stable
parent child Browse files
Show More
@@ -54,9 +54,10 b' def b85decode(text):'
54 54 try:
55 55 acc = acc * 85 + _b85dec[c]
56 56 except KeyError:
57 raise TypeError('Bad base85 character at byte %d' % (i + j))
57 raise ValueError('bad base85 character at position %d'
58 % (i + j))
58 59 if acc > 4294967295:
59 raise OverflowError('Base85 overflow in hunk starting at byte %d' % i)
60 raise ValueError('Base85 overflow in hunk starting at byte %d' % i)
60 61 out.append(acc)
61 62
62 63 # Pad final chunk if necessary
@@ -496,9 +496,6 b''
496 496 mercurial/patch.py:0:
497 497 > except:
498 498 warning: naked except clause
499 mercurial/pure/base85.py:0:
500 > raise OverflowError('Base85 overflow in hunk starting at byte %d' % i)
501 warning: line over 80 characters
502 499 mercurial/pure/mpatch.py:0:
503 500 > frags.extend(reversed(new)) # what was left at the end
504 501 warning: line over 80 characters
General Comments 0
You need to be logged in to leave comments. Login now