##// END OF EJS Templates
base85: avoid a spurious use-before-initialized warning in `pure` module...
Matt Harbison -
r52830:936f85b2 default
parent child Browse files
Show More
@@ -58,6 +58,8 def b85decode(text: bytes) -> bytes:
58
58
59 l = len(text)
59 l = len(text)
60 out = []
60 out = []
61 acc = 0
62
61 for i in range(0, len(text), 5):
63 for i in range(0, len(text), 5):
62 chunk = text[i : i + 5]
64 chunk = text[i : i + 5]
63 chunk = pycompat.bytestr(chunk)
65 chunk = pycompat.bytestr(chunk)
General Comments 0
You need to be logged in to leave comments. Login now