Am 26.06.2010 17:59, schrieb Stefan Reich: > The main problem is that Python 3 is incompatible with almost all > scripts written for Python 2 (if they use print). And it gets worse: > Python 3 scripts are incompatible with Python 2! (If they use print > variants, like writing to a file.)
Seems like you don't know that you can easily migrate your scripts with the tool "2to3". Also you can write Python 3 compatible scripts in Python 2.6 and newer: from __future__ import print_function. Christian -- http://mail.python.org/mailman/listinfo/python-list