Am Freitag, 26. Februar 2010 20:16:11 schrieb Han-Wen Nienhuys:
> IIRC I saw a bunch of changes by Jan some time ago to make our scripts
> support both Python 2.x and 3.x  - some of them may have inadvertently
> be reverted.
> 
> I think it is possible to support both with some work, and some loss
> of neatness in the code.

There are some incompatible changes (one I ran into some days ago), like e.g. 
named exceptions. In python 2.4 you need to use

except InvalidVersionException, ex:

while in in 2.5 (or 2.6) (which still supports the above comma syntax) you can 
and in 3.0 (which does not the comma syntax any more) you MUST write

except InvalidVersionException as ex:

Cheers,
Reinhold
-- 
------------------------------------------------------------------
Reinhold Kainhofer, reinh...@kainhofer.com, http://reinhold.kainhofer.com/
 * Financial & Actuarial Math., Vienna Univ. of Technology, Austria
 * http://www.fam.tuwien.ac.at/, DVR: 0005886
 * LilyPond, Music typesetting, http://www.lilypond.org


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to