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 Python-ideas@python.org https://mail.python.org/mailman/listinfo/python-ideas Code of Conduct: http://python.org/psf/codeofconduct/