History log of /external/python/cpython3/Lib/encodings/quopri_codec.py
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
06171bd52a02173910d7ab8082850bbed0db1410 12-Sep-2015 Martin Panter <vadmium> Issue #16473: Fix byte transform codec documentation; test quotetabs=True

This changes the equivalent functions listed for the Base-64, hex and Quoted-
Printable codecs to reflect the functions actually used. Also mention and
test the "quotetabs" setting for Quoted-Printable encoding.
/external/python/cpython3/Lib/encodings/quopri_codec.py
e5cb836d4c481ad8ec6f5e0b611f7162c30a8abb 14-Mar-2014 R David Murray <rdmurray@bitdance.com> #7475: Remove references to '.transform' from transform codec docstrings.
/external/python/cpython3/Lib/encodings/quopri_codec.py
94ee389308ec9e0e07b3f7a944d5179aba540c5e 24-Feb-2014 Serhiy Storchaka <storchaka@gmail.com> Issue #19619: Blacklist non-text codecs in method API

str.encode, bytes.decode and bytearray.decode now use an
internal API to throw LookupError for known non-text encodings,
rather than attempting the encoding or decoding operation and
then throwing a TypeError for an unexpected output type.

The latter mechanism remains in place for third party non-text
encodings.

Backported changeset d68df99d7a57.
/external/python/cpython3/Lib/encodings/quopri_codec.py
02524629f39bb70f4ea00ab8e64d694e08719227 02-Dec-2010 Georg Brandl <georg@python.org> #7475: add (un)transform method to bytes/bytearray and str, add back codecs that can be used with them from Python 2.
/external/python/cpython3/Lib/encodings/quopri_codec.py
42748a8d6dc121d5311668a0fe005c277b7d0220 12-Jun-2007 Walter Dörwald <walter@livinglogic.de> Rip out all codecs that can't work in a unicode/bytes world:
base64, uu, zlib, rot_13, hex, quopri, bz2, string_escape.

However codecs.escape_encode() and codecs.escape_decode()
still exist, as they are used for pickling str8 objects
(so those two functions can go, when the str8 type is removed).
/external/python/cpython3/Lib/encodings/quopri_codec.py
a977329b6fb0e4c95cabb9043794de69b27a1099 21-Apr-2006 Thomas Wouters <thomas@python.org> Merge part of the trunk changes into the p3yk branch. This merges from 43030
(branch-creation time) up to 43067. 43068 and 43069 contain a little
swapping action between re.py and sre.py, and this mightily confuses svn
merge, so later changes are going in separately.

This merge should break no additional tests.

The last-merged revision is going in a 'last_merge' property on '.' (the
branch directory.) Arbitrarily chosen, really; if there's a BCP for this, I
couldn't find it, but we can easily change it afterwards ;)
/external/python/cpython3/Lib/encodings/quopri_codec.py
26e3b681b26c9978c819396e278f43d356d86f9e 20-Sep-2001 Marc-André Lemburg <mal@egenix.com> Patch #462635 by Andrew Kuchling correcting bugs in the new
codecs -- the self argument does matter for Python functions (it
does not for C functions which most other codecs use).
/external/python/cpython3/Lib/encodings/quopri_codec.py
acfdf156aa4c2a9bd8d81972888c3ad21c1a2eba 15-May-2001 Guido van Rossum <guido@python.org> Add quoted-printable codec
/external/python/cpython3/Lib/encodings/quopri_codec.py