On Tuesday, July 24, 2018 at 9:28:02 AM UTC+2, Brice Parent wrote:
Le 24/07/2018 à 00:39, Chris Angelico a écrit :
> On Tue, Jul 24, 2018 at 8:22 AM, Thomas Jollans <tj...@tjol.eu> wrote:
...
> What about:
>
> 5 < x < 10
>
> Can you add parentheses to that to "make precedence and evaluation order clear"?
Correct me if I'm wrong, but to my knowledge, this is just a shorthand
to `5 < x and x < 10`.

I learned something here:
>>>   -5<-2<-1<=-1>-3
True

I wonder how this works, especially as < and friends have magical __ methods... How is it expanded in tne AST?