[issue6411] 3.1 not functional

Ezio Melotti report at bugs.python.org
Fri Jul 3 23:28:05 CEST 2009


Ezio Melotti <ezio.melotti at gmail.com> 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 <report at bugs.python.org>
<http://bugs.python.org/issue6411>
_______________________________________


More information about the Python-bugs-list mailing list