0
0
mirror of https://github.com/django/django.git synced 2024-11-30 07:06:18 +01:00

Used a Python 3-compatible syntax for building a translation table

This commit is contained in:
Claude Paroz 2012-07-22 18:05:53 +02:00
parent 00ace01411
commit 690cabe203

View File

@ -27,8 +27,8 @@ from django.utils.encoding import smart_str
from django.utils.six.moves import xrange
_trans_5c = b"".join([chr(x ^ 0x5C) for x in xrange(256)])
_trans_36 = b"".join([chr(x ^ 0x36) for x in xrange(256)])
_trans_5c = bytearray([(x ^ 0x5C) for x in xrange(256)])
_trans_36 = bytearray([(x ^ 0x36) for x in xrange(256)])
def salted_hmac(key_salt, value, secret=None):