This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ncoghlan
Recipients barry, belopolsky, benjamin.peterson, cben, eric.araujo, ezio.melotti, flox, georg.brandl, gregory.p.smith, isoschiz, jcea, lemburg, loewis, ncoghlan, pconnell, petri.lehtinen, r.david.murray, ssbarnea, vstinner
Date 2013-10-02.15:08:16
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1380726496.58.0.443055380417.issue7475@psf.upfronthosting.co.za>
In-reply-to
Content
With issue 17839 fixed, the error from invoking the base64 codec through the method API is now substantially more sensible:

>>> b"ZXhhbXBsZQ==\n".decode("base64_codec")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: decoder did not return a str object (type=bytes)
History
Date User Action Args
2013-10-02 15:08:16ncoghlansetrecipients: + ncoghlan, lemburg, loewis, barry, georg.brandl, gregory.p.smith, jcea, cben, belopolsky, vstinner, benjamin.peterson, ezio.melotti, eric.araujo, r.david.murray, ssbarnea, flox, petri.lehtinen, pconnell, isoschiz
2013-10-02 15:08:16ncoghlansetmessageid: <1380726496.58.0.443055380417.issue7475@psf.upfronthosting.co.za>
2013-10-02 15:08:16ncoghlanlinkissue7475 messages
2013-10-02 15:08:16ncoghlancreate