diff options
author | Guido van Rossum <guido@python.org> | 2007-11-21 19:29:53 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-11-21 19:29:53 +0000 |
commit | 745dcea6f3e96568f87ad63b56bada3a07cc5ab5 (patch) | |
tree | 01b73c24037d20edb59ace665843bc74bb68b19b /Lib/test/test_binascii.py | |
parent | 7c8a0fb40dc11a0ac328c5a73da5884b4b68a06b (diff) | |
download | cpython-745dcea6f3e96568f87ad63b56bada3a07cc5ab5.tar.gz |
Rename buffer -> bytearray.
Diffstat (limited to 'Lib/test/test_binascii.py')
-rwxr-xr-x | Lib/test/test_binascii.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_binascii.py b/Lib/test/test_binascii.py index fa13563daa..fb9a666378 100755 --- a/Lib/test/test_binascii.py +++ b/Lib/test/test_binascii.py @@ -56,7 +56,7 @@ class BinASCIITest(unittest.TestCase): a = binascii.b2a_base64(b) lines.append(a) - fillers = buffer() + fillers = bytearray() valid = b"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/" for i in range(256): if i not in valid: @@ -64,7 +64,7 @@ class BinASCIITest(unittest.TestCase): def addnoise(line): noise = fillers ratio = len(line) // len(noise) - res = buffer() + res = bytearray() while line and noise: if len(line) // len(noise) > ratio: c, line = line[0], line[1:] @@ -72,7 +72,7 @@ class BinASCIITest(unittest.TestCase): c, noise = noise[0], noise[1:] res.append(c) return res + noise + line - res = buffer() + res = bytearray() for line in map(addnoise, lines): b = binascii.a2b_base64(line) res += b |