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 pitrou
Recipients Guillaume.Bouchard, chris.jerdonek, docs@python, eric.araujo, ezio.melotti, pitrou, r.david.murray, terry.reedy
Date 2012-10-15.17:29:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1350322196.94.0.900729147272.issue13538@psf.upfronthosting.co.za>
In-reply-to
Content
Indeed:

>>> m = memoryview(b"")
>>> str(m, "utf-8")
''
>>> m.decode("utf-8")
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
AttributeError: 'memoryview' object has no attribute 'decode'
History
Date User Action Args
2012-10-15 17:29:57pitrousetrecipients: + pitrou, terry.reedy, ezio.melotti, eric.araujo, r.david.murray, chris.jerdonek, docs@python, Guillaume.Bouchard
2012-10-15 17:29:56pitrousetmessageid: <1350322196.94.0.900729147272.issue13538@psf.upfronthosting.co.za>
2012-10-15 17:29:56pitroulinkissue13538 messages
2012-10-15 17:29:56pitroucreate