I'm bited once:
>>> '' in {} == False
False
>>> ('' in {}) == False
True
# '' in {} == False ==>> ('' in {}) and ({} == False) ==>> False!
I think only compare operations should be chained.
_______________________________________________ Python-ideas mailing list [email protected] https://mail.python.org/mailman/listinfo/python-ideas Code of Conduct: http://python.org/psf/codeofconduct/
