diff options
| author | Barry Warsaw <barry@python.org> | 2001-09-26 05:26:22 (GMT) |
|---|---|---|
| committer | Barry Warsaw <barry@python.org> | 2001-09-26 05:26:22 (GMT) |
| commit | 6f70c41923a744db79a176c7a13bac2cc952b1d4 (patch) | |
| tree | 4334d3cbdfc7c44fd76019cc2ac6be5bc31e43a5 /Lib/email/Encoders.py | |
| parent | 5e634638e623e25aeb84d82e0b89891173a0a5f7 (diff) | |
| download | cpython-6f70c41923a744db79a176c7a13bac2cc952b1d4.zip cpython-6f70c41923a744db79a176c7a13bac2cc952b1d4.tar.gz cpython-6f70c41923a744db79a176c7a13bac2cc952b1d4.tar.bz2 | |
cosmetic
Diffstat (limited to 'Lib/email/Encoders.py')
| -rw-r--r-- | Lib/email/Encoders.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/email/Encoders.py b/Lib/email/Encoders.py index 36db370..d9cd42d 100644 --- a/Lib/email/Encoders.py +++ b/Lib/email/Encoders.py @@ -13,6 +13,7 @@ from quopri import encodestring as _encodestring def _qencode(s): return _encodestring(s, quotetabs=1) + def _bencode(s): # We can't quite use base64.encodestring() since it tacks on a "courtesy # newline". Blech! |
