lint code

This commit is contained in:
clowwindy 2014-10-31 18:57:06 +08:00
parent ede2b1b120
commit 05ba3cc5aa

View file

@ -75,12 +75,10 @@ def py_xor_str(a, b):
if bytes == str:
for i in range(0, len(a)):
c.append(chr(ord(a[i]) ^ ord(b[i])))
return ''.join(c)
else:
for i in range(0, len(a)):
c.append(a[i] ^ b[i])
if bytes == str:
return ''.join(c)
else:
return bytes(c)