commit | ea0ebd807507e94d06ed2ff046f5bb6693400ecd | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Tue May 15 21:10:24 2007 +0000 |
committer | Guido van Rossum <guido@python.org> | Tue May 15 21:10:24 2007 +0000 |
tree | 34b6795135912426d2b962e1af161a8c579923da | |
parent | 2be161dcfa531b0e2f3f9887e198be59f477854e [diff] [blame] |
Make test_str.py pass.
diff --git a/Lib/encodings/base64_codec.py b/Lib/encodings/base64_codec.py index f84e780..e6a1e65 100644 --- a/Lib/encodings/base64_codec.py +++ b/Lib/encodings/base64_codec.py
@@ -21,7 +21,7 @@ """ assert errors == 'strict' - output = base64.encodestring(input) + output = bytes(base64.encodestring(input)) return (output, len(input)) def base64_decode(input,errors='strict'):