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 amaury.forgeotdarc
Recipients amaury.forgeotdarc, ezio.melotti, t.steinruecken
Date 2009-03-01.13:58:15
SpamBayes Score 0.0015874692
Marked as misclassified No
Message-id <1235915898.44.0.522717275321.issue5398@psf.upfronthosting.co.za>
In-reply-to
Content
Ezio is correct: in general a string cannot be added to a unicode.
Except for the simplest case (only 7bit ascii characters), you have to 
decode the string:

u"" + datetime.datetime( 2009, 3, 1 ).strftime("%B").decode('utf-8')
History
Date User Action Args
2009-03-01 13:58:18amaury.forgeotdarcsetrecipients: + amaury.forgeotdarc, ezio.melotti, t.steinruecken
2009-03-01 13:58:18amaury.forgeotdarcsetmessageid: <1235915898.44.0.522717275321.issue5398@psf.upfronthosting.co.za>
2009-03-01 13:58:16amaury.forgeotdarclinkissue5398 messages
2009-03-01 13:58:15amaury.forgeotdarccreate