##// END OF EJS Templates
py3: use pycompat.bytestr to convert _b85chars to bytes...
Pulkit Goyal -
r35962:01b4d88c default
parent child Browse files
Show More
@@ -9,8 +9,10 b' from __future__ import absolute_import'
9
9
10 import struct
10 import struct
11
11
12 _b85chars = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" \
12 from .. import pycompat
13 "abcdefghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~"
13
14 _b85chars = pycompat.bytestr("0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef"
15 "ghijklmnopqrstuvwxyz!#$%&()*+-;<=>?@^_`{|}~")
14 _b85chars2 = [(a + b) for a in _b85chars for b in _b85chars]
16 _b85chars2 = [(a + b) for a in _b85chars for b in _b85chars]
15 _b85dec = {}
17 _b85dec = {}
16
18
General Comments 0
You need to be logged in to leave comments. Login now