Ezio Melotti <[email protected]> added the comment: Maybe you used "print foo" instead of "print(foo)". In Python3 print is a function and if you don't use the () you get this: >>> print foo File "<stdin>", line 1 print foo ^ SyntaxError: invalid syntax
---------- nosy: +ezio.melotti _______________________________________ Python tracker <[email protected]> <http://bugs.python.org/issue6411> _______________________________________ _______________________________________________ Python-bugs-list mailing list Unsubscribe: http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com
