Re: Operator precedence table questions

2014-02-15 Thread Chris Angelico
On Sun, Feb 16, 2014 at 11:30 AM, Ned Batchelder wrote: > On 2/15/14 7:18 PM, Chris Angelico wrote: >> >> http://docs.python.org/3.3/reference/expressions.html#operator-precedence >> >> """ >> Operators in the same box group left to right (except for comparisons, >> including tests, which all have

Re: Operator precedence table questions

2014-02-15 Thread Ned Batchelder
On 2/15/14 7:18 PM, Chris Angelico wrote: http://docs.python.org/3.3/reference/expressions.html#operator-precedence """ Operators in the same box group left to right (except for comparisons, including tests, which all have the same precedence and chain from left to right...) """ Comparisons, in

Operator precedence table questions

2014-02-15 Thread Chris Angelico
http://docs.python.org/3.3/reference/expressions.html#operator-precedence """ Operators in the same box group left to right (except for comparisons, including tests, which all have the same precedence and chain from left to right...) """ Comparisons, including tests, are all in the same box. Gram