[issue24921] Operator precedence table in 5.15 should be highest to lowest precedence

2020-06-01 Thread Ama Aje My Fren
Change by Ama Aje My Fren : -- keywords: +patch nosy: +amaajemyfren nosy_count: 5.0 -> 6.0 pull_requests: +19812 stage: -> patch review pull_request: https://github.com/python/cpython/pull/20572 ___ Python tracker

[issue24921] Operator precedence table in 5.15 should be highest to lowest precedence

2020-05-31 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- versions: +Python 3.10, Python 3.6, Python 3.7, Python 3.8, Python 3.9 -Python 2.7 ___ Python tracker ___ _

[issue24921] Operator precedence table in 5.15 should be highest to lowest precedence

2015-08-28 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue24921] Operator precedence table in 5.15 should be highest to lowest precedence

2015-08-24 Thread Stefan Krah
Stefan Krah added the comment: Agreed. I'm not sure though what the reason for this convention is: The flow in Grammar/Grammar (low to high) feels quite natural to me. That said, I'm +-0 on the change. -- ___ Python tracker

[issue24921] Operator precedence table in 5.15 should be highest to lowest precedence

2015-08-24 Thread Skip Montanaro
Skip Montanaro added the comment: YACC might be an outlier as well. In any case, it's probably better to use other common programming languages as a gauge of what's typical. A quick check of C, C#, C++, Java, Perl, Ruby, and Haskell shows they all list operator precedence in order from highest

[issue24921] Operator precedence table in 5.15 should be highest to lowest precedence

2015-08-24 Thread Stefan Krah
Stefan Krah added the comment: Yacc uses low to high. -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue24921] Operator precedence table in 5.15 should be highest to lowest precedence

2015-08-24 Thread Joseph Schachner
New submission from Joseph Schachner: We should not make people who need to read Python documentation do an extra transformation in their heads to correctly understand that in section 5.15 higher precedence is at the bottom of the table and lower precedence is at the top. Because the documenta