This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ezio.melotti
Recipients alexandre.vassalotti, element.effect, ezio.melotti
Date 2009-07-03.21:28:03
SpamBayes Score 5.988623e-09
Marked as misclassified No
Message-id <1246656485.06.0.454839288637.issue6411@psf.upfronthosting.co.za>
In-reply-to
Content
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
History
Date User Action Args
2009-07-03 21:28:05ezio.melottisetrecipients: + ezio.melotti, alexandre.vassalotti, element.effect
2009-07-03 21:28:05ezio.melottisetmessageid: <1246656485.06.0.454839288637.issue6411@psf.upfronthosting.co.za>
2009-07-03 21:28:04ezio.melottilinkissue6411 messages
2009-07-03 21:28:03ezio.melotticreate