mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Fix failure introduced in r83182.
This commit is contained in:
parent
cf448832eb
commit
84befb00bd
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ def b32decode(s, casefold=False, map01=None):
|
|||
acc += _b32rev[c] << shift
|
||||
shift -= 5
|
||||
if shift < 0:
|
||||
parts.append(binascii.unhexlify('%010x' % acc))
|
||||
parts.append(binascii.unhexlify(bytes('%010x' % acc, "ascii")))
|
||||
acc = 0
|
||||
shift = 35
|
||||
# Process the last, partial quanta
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue