summaryrefslogtreecommitdiffstats
path: root/Lib/encodings/quopri_codec.py
Commit message (Collapse)AuthorAgeFilesLines
* Fix #883466: don't allow Unicode as arguments to quopri and uu codecs.Georg Brandl2007-09-031-2/+3
|
* Patch #1436130: codecs.lookup() now returns a CodecInfo object (a subclassWalter Dörwald2006-03-151-1/+17
| | | | | | | of tuple) that provides incremental decoders and encoders (a way to use stateful codecs without the stream API). Functions codecs.getincrementaldecoder() and codecs.getincrementalencoder() have been added.
* Patch #462635 by Andrew Kuchling correcting bugs in the newMarc-André Lemburg2001-09-201-2/+4
| | | | | codecs -- the self argument does matter for Python functions (it does not for C functions which most other codecs use).
* Add quoted-printable codecGuido van Rossum2001-05-151-0/+56