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 terry.reedy
Recipients georg.brandl, terry.reedy
Date 2008-08-07.21:53:15
SpamBayes Score 0.07941822
Marked as misclassified No
Message-id <1218145996.93.0.279881671552.issue3519@psf.upfronthosting.co.za>
In-reply-to
Content
Language reference/ Expressions/ Evaluation order
...
In the following lines, expressions will be evaluated in the arithmetic
order of their suffixes:
...
func(expr1, expr2, *expr3, **expr4)

The omission of a suffix from the function expression could imply that
such are somehow not included in the left-to-right rule.  Suggest
'func0', 'f_expr0', 'func_expr0' or just 'expr0' possibly renumbered from 1.

expr1(expr2, expr3, *expr4, **expr5)
is probably most consistent with other examples.
History
Date User Action Args
2008-08-07 21:53:17terry.reedysetrecipients: + terry.reedy, georg.brandl
2008-08-07 21:53:16terry.reedysetmessageid: <1218145996.93.0.279881671552.issue3519@psf.upfronthosting.co.za>
2008-08-07 21:53:16terry.reedylinkissue3519 messages
2008-08-07 21:53:15terry.reedycreate