[issue8694] python3 FAQ mentions unicode()

2010-05-21 Thread Georg Brandl
Georg Brandl added the comment: This was due to a review of the programming FAQ not yet having been merged to the 3.1 branch. Now fixed in r81407. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed ___ Python tracker

[issue8694] python3 FAQ mentions unicode()

2010-05-14 Thread Terry J. Reedy
Terry J. Reedy added the comment: Yes, the faq entry has example code like "value = unicode(value, "utf-8")" This whole section now applies when 'value' is a bytes or bytearray object and one calls str(value). For portability, one should in 2.6/7 use unicode strings as much as possible and t

[issue8694] python3 FAQ mentions unicode()

2010-05-12 Thread Giampaolo Rodola'
Changes by Giampaolo Rodola' : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mai

[issue8694] python3 FAQ mentions unicode()

2010-05-11 Thread Nathan Phillip Brink
New submission from Nathan Phillip Brink : http://docs.python.org/py3k/faq/programming.html#what-does-unicodeerror-ascii-decoding-encoding-error-ordinal-not-in-range-128-mean When I try to use unicode() from within python3, the call fails. I would actually expect that the FAQ should contain mor