commit | 254348e201647ad9d264de2cc0fde031e8214719 | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Wed Nov 21 19:29:53 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Wed Nov 21 19:29:53 2007 +0000 |
tree | f5e6c42989ce114d4a9385404a6b23b2b1ff12af | |
parent | 905a904723abadc627be60bf944e2ca76329b06e [diff] [blame] |
Rename buffer -> bytearray.
diff --git a/Lib/encodings/idna.py b/Lib/encodings/idna.py index 30f507a..c2ba1da 100644 --- a/Lib/encodings/idna.py +++ b/Lib/encodings/idna.py
@@ -153,7 +153,7 @@ if not input: return b'', 0 - result = buffer() + result = bytearray() labels = dots.split(input) if labels and not labels[-1]: trailing_dot = b'.' @@ -216,7 +216,7 @@ if labels: trailing_dot = b'.' - result = buffer() + result = bytearray() size = 0 for label in labels: if size: