We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7912334 commit 74b7541Copy full SHA for 74b7541
1 file changed
Twitter_API/binascii.py
@@ -33,7 +33,7 @@ def _transform(n):
33
table_a2b_base64 = ''.join(map(_transform, table_a2b_base64))
34
assert len(table_a2b_base64) == 256
35
36
-def a2b_base64(ascii):
+def a2b_base64(ascii_data):
37
"Decode a line of base64 data."
38
39
res = []
@@ -42,7 +42,7 @@ def a2b_base64(ascii):
42
leftbits = 0
43
last_char_was_a_pad = False
44
45
- for c in ascii:
+ for c in ascii_data:
46
c = chr(c)
47
if c == PAD:
48
if quad_pos > 2 or (quad_pos == 2 and last_char_was_a_pad):
0 commit comments