Message1459

Author pekka.klarck
Recipients
Date 2007-02-15.10:36:55
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Catenating string and unicode seem to work correctly.

Jython 2.2b1 on java1.5.0_10 (JIT: null)
Type "copyright", "credits" or "license" for more information.
>>> x = 'Good ' + u'Hyv\u00E4'
>>> type(x)
<type 'unicode'>
>>> x
u'Good Hyv\xE4'
>>> unicode(x)
u'Good Hyv\xE4'
History
Date User Action Args
2008-02-20 17:17:43adminlinkissue1659819 messages
2008-02-20 17:17:43admincreate