35
Blog post where someone used Python quirks to evaluate false == true
(lemmy.dbzer0.com)
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Python doesn't have
trueorfalsekeywords, nor any other primitives by those names.So either you're thinking of a different language, or different identifiers, or someone assigned equal values to variables with those names and then blogged about it.
This changed in 3.0 to my knowledge. Ref: https://wiki.python.org/moin/Python3.0#f
That change is about
TrueandFalse, nottrueandfalse. If OP was thinking of the former pair, it would seem my "different identifiers" guess was correct.