Message3108

Author seamus
Recipients fwierzbicki, seamus
Date 2008-03-27.13:30:26
SpamBayes Score 0.0
Marked as misclassified No
Message-id <1206624627.59.0.554493506524.issue1015@psf.upfronthosting.co.za>
In-reply-to
Content
Even without the pep 263 feature,
unicode strings can be combined with '+' but not '%'.

def getAraLetters():
     return ''.join([unichr(num) for num in xrange(1569,1617)])

newString = u""" The Arabic Letters: """+ getAraLetters()
newString = u""" Here are some Arabic letters %s """ % (getAraLetters())
History
Date User Action Args
2008-09-12 00:27:57nrileysetspambayes_score: 0.710774 -> 0.0
2008-03-27 13:30:27seamussetspambayes_score: 0.710774 -> 0.710774
recipients: + seamus, fwierzbicki
2008-03-27 13:30:27seamussetspambayes_score: 0.710774 -> 0.710774
messageid: <1206624627.59.0.554493506524.issue1015@psf.upfronthosting.co.za>
2008-03-27 13:30:27seamuslinkissue1015 messages
2008-03-27 13:30:27seamuscreate