diff options
author | Martin Panter <vadmium> | 2015-09-12 01:22:17 (GMT) |
---|---|---|
committer | Martin Panter <vadmium> | 2015-09-12 01:22:17 (GMT) |
commit | 9ab96946eef86d2fc0e54262ee7c44f3d5dc3d39 (patch) | |
tree | 3b3abc3f73c2675e0e7fb700f23ea6704cdda4fb /Lib/encodings | |
parent | 3133a9f5ab0eac7e21a13b9fa10356d6c830f83c (diff) | |
parent | 06171bd52a02173910d7ab8082850bbed0db1410 (diff) | |
download | cpython-9ab96946eef86d2fc0e54262ee7c44f3d5dc3d39.zip cpython-9ab96946eef86d2fc0e54262ee7c44f3d5dc3d39.tar.gz cpython-9ab96946eef86d2fc0e54262ee7c44f3d5dc3d39.tar.bz2 |
Issue #16473: Merge codecs doc and test from 3.4 into 3.5
Diffstat (limited to 'Lib/encodings')
-rw-r--r-- | Lib/encodings/quopri_codec.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/encodings/quopri_codec.py b/Lib/encodings/quopri_codec.py index 0533dbe..496cb76 100644 --- a/Lib/encodings/quopri_codec.py +++ b/Lib/encodings/quopri_codec.py @@ -11,7 +11,7 @@ def quopri_encode(input, errors='strict'): assert errors == 'strict' f = BytesIO(input) g = BytesIO() - quopri.encode(f, g, 1) + quopri.encode(f, g, quotetabs=True) return (g.getvalue(), len(input)) def quopri_decode(input, errors='strict'): |