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 corona10
Recipients corona10
Date 2018-06-30.17:42:57
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1530380578.04.0.56676864532.issue34013@psf.upfronthosting.co.za>
In-reply-to
Content
Python 3.8.0a0 (heads/master-dirty:0cdf5f4289, Jul 1 2018, 02:30:31) [Clang 9.1.0 (clang-902.0.39.1)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> print "hi" File "<stdin>", line 1 print "hi" ^ SyntaxError: Missing parentheses in call to 'print'. Did you mean print("hi")? >>> def add(a,b): ... return a + b ... >>> print add(3,5) File "<stdin>", line 1 print add(3,5) ^ SyntaxError: invalid syntax IMHO, an error message should be 'SyntaxError: Missing parentheses in call to 'print'. Did you mean print(add(3,5))?' but it is not.
History
Date User Action Args
2018-06-30 17:42:58corona10setrecipients: + corona10
2018-06-30 17:42:58corona10setmessageid: <1530380578.04.0.56676864532.issue34013@psf.upfronthosting.co.za>
2018-06-30 17:42:58corona10linkissue34013 messages
2018-06-30 17:42:57corona10create