diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-06 20:52:23 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2014-02-06 20:52:23 (GMT) |
commit | a26b3f183d1101a21c51a5bd0c75834dfe859039 (patch) | |
tree | 22d428add046e60444327110f7b57cc6bf819c6c /Lib/base64.py | |
parent | a146bef02bf26b75d8d720f444283e28e784a1e3 (diff) | |
parent | bc27a050a7bef228c5e125c4de938faef56533fd (diff) | |
download | cpython-a26b3f183d1101a21c51a5bd0c75834dfe859039.zip cpython-a26b3f183d1101a21c51a5bd0c75834dfe859039.tar.gz cpython-a26b3f183d1101a21c51a5bd0c75834dfe859039.tar.bz2 |
Issue #20363. Fixed BytesWarning triggerred by test suite.
Patch by Berker Peksag.
Diffstat (limited to 'Lib/base64.py')
-rwxr-xr-x | Lib/base64.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/base64.py b/Lib/base64.py index 84818cf..573f76d 100755 --- a/Lib/base64.py +++ b/Lib/base64.py @@ -362,7 +362,7 @@ def a85decode(b, *, foldspaces=False, adobe=False, ignorechars=b' \t\n\r\v'): if adobe: if not (b.startswith(_A85START) and b.endswith(_A85END)): raise ValueError("Ascii85 encoded byte sequences must be bracketed " - "by {} and {}".format(_A85START, _A85END)) + "by {!r} and {!r}".format(_A85START, _A85END)) b = b[2:-2] # Strip off start/end markers # # We have to go through this stepwise, so as to ignore spaces and handle |