[issue5310] operator precedence table is wrong

2009-02-19 Thread Georg Brandl
Georg Brandl added the comment: Fixed in r69769. -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bug

[issue5310] operator precedence table is wrong

2009-02-18 Thread Gabriel Genellina
Changes by Gabriel Genellina : -- keywords: +patch Added file: http://bugs.python.org/file13135/expressions.diff ___ Python tracker ___ ___

[issue5310] operator precedence table is wrong

2009-02-18 Thread Gabriel Genellina
New submission from Gabriel Genellina : The operator precedence table is wrong. shows "in"/"not in" having less priority than comparisons like "==", but that's not true: py> 2 in (1,2) == True False The .rst file is wrong, as well as