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 serhiy.storchaka
Recipients ezio.melotti, gvanrossum, ncoghlan, peter.otten, pitrou, serhiy.storchaka
Date 2013-08-20.09:41:13
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1376991673.56.0.216121394997.issue18788@psf.upfronthosting.co.za>
In-reply-to
Content
> Ambiguous cases (such as "expr * expr" and "expr ** expr") obey the rule that implicit calls are very *low* precedence, so you have to use parens to force the call interpretation.

Does "a + b c" mean "(a + b)(c)"? Does "a + b (c)" mean "(a + b)((c))"?

What does "a (b, c)" mean? "a.__call__(b, c)" or "a.__call__((b, c))"?
History
Date User Action Args
2013-08-20 09:41:13serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, ncoghlan, peter.otten, pitrou, ezio.melotti
2013-08-20 09:41:13serhiy.storchakasetmessageid: <1376991673.56.0.216121394997.issue18788@psf.upfronthosting.co.za>
2013-08-20 09:41:13serhiy.storchakalinkissue18788 messages
2013-08-20 09:41:13serhiy.storchakacreate