Terry Reedy <tjre...@udel.edu> writes: > Having completely switched from 'printf(' to 'print ', I have had a > bit of a problem switching back to 'print('. It is my single largest > source of typos. But a decent system that puts me at the site of > syntax errors alleviates this. Logic bugs are a much bigger problem.
I tend to print a lot of tracing messages in my programs, in the form print (x, y, z) expecting to print the tuple (x,y,z) in a form that I can read back into an analysis program. That's going to break without throwing any syntax errors if I ever switch to Python 3. -- http://mail.python.org/mailman/listinfo/python-list