Message5604

Author pekka.klarck
Recipients AndreasEK, pekka.klarck, pjenvey
Date 2010-03-28.23:40:05
SpamBayes Score 1.3503537e-10
Marked as misclassified No
Message-id <1269819605.62.0.858733534798.issue1585@psf.upfronthosting.co.za>
In-reply-to
Content
Philip is definitely right:

Python 2.5.4 (r254:67916, Jan 20 2010, 21:44:03) 
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> unicode(Exception(u'\xe4'))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
UnicodeEncodeError: 'ascii' codec can't encode character u'\xe4' in position 0: ordinal not in range(128)
>>> unicode(Exception(u'\xe4').args[0])
u'\xe4'
History
Date User Action Args
2010-03-28 23:40:05pekka.klarcksetmessageid: <1269819605.62.0.858733534798.issue1585@psf.upfronthosting.co.za>
2010-03-28 23:40:05pekka.klarcksetrecipients: + pekka.klarck, pjenvey, AndreasEK
2010-03-28 23:40:05pekka.klarcklinkissue1585 messages
2010-03-28 23:40:05pekka.klarckcreate