Hi, just going to the svn log
On 09.09.2010 03:13, Jason Tackaberry wrote: > - treat print() as a function, which works also on 2.x I did not know that. > - Remove explicit u'unicode strings' since the u prefix is not > supported in Python 3. Instead we just rely on the fact that > concatenating a str with a unicode results in a unicode in Python > 2. There was a reason I added it, but it was around Python 2.3. Now it looks like it is working as expected: >>> >>> type('o' + u'o' 'o') <type 'unicode'> >>> >>> type('o%so' % u'o') <type 'unicode'> >>> >>> type(u'o%so' % 'o') <type 'unicode'> So I guess it is safe to remove this. Maybe we don't need to match logging anymore either. Dischi -- I say no to drugs, They just don't listen... ------------------------------------------------------------------------------ Start uncovering the many advantages of virtual appliances and start using them to simplify application deployment and accelerate your shift to cloud computing http://p.sf.net/sfu/novell-sfdev2dev _______________________________________________ Freevo-devel mailing list Freevo-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/freevo-devel