On Thu, Sep 09, 2004 at 01:20:36PM -0400, Neil Schemenauer wrote: > On Thu, Sep 09, 2004 at 10:39:37AM -0700, Oscar Rambla wrote: > > 'Uni es %s
' % uni_val # XXX > > Combining str and unicode objects like this does not work in Python > 2.3. That is fixed in Python 2.4. It's amazing to me that > international users didn't complain about this problem earlier. What?! $ python Python 2.3.4 (#1, May 28 2004, 17:24:45) [GCC 3.2.1] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>> u = unicode("Олег", "koi8-r") >>> s = "%s" % u >>> print type(s), sОлег Nothing to complain about. Have I missed something? Confused... Oleg. -- Oleg Broytmann http://phd.pp.ru/ phd@phd.pp.ru Programmers don't die, they just GOSUB without RETURN.