On Mon, May 15, 2017 at 11:17:48PM +1000, Chris Angelico wrote: > On Mon, May 15, 2017 at 11:00 PM, Steven D'Aprano <st...@pearwood.info> wrote:
> > There's also cases where > > > > if x > y: > > pass > > else: > > code > > > > is *not necessarily* the same as > > > > if not (x > y): > > code > > > > (x > y) is not always not(x <= y). E.g. sets, and even floats. > > Uhm.... not sure what you're getting at here. Neither am I, now :-) I'm not quite sure what I was thinking, but it made sense at the time. Sorry for the noise. -- Steve _______________________________________________ Python-ideas mailing list Python-ideas@python.org https://mail.python.org/mailman/listinfo/python-ideas Code of Conduct: http://python.org/psf/codeofconduct/