Hacker News new | ask | show | jobs
by hahainternet 4505 days ago
How could this not happen in Python?
3 comments

Good question, even though Python doesn't allow assignment in an expression, but for this reason I put the constant on the left side of the comparison no matter what language I use.
Because assigning in if would be a syntax error in Python.
Python does not allow an assignment to occur within an expression. They deliberately chose that restriction, to avoid that hard-to-see bug.
True, but in languages with operator overloading you (may) end up with other issues. Unless you look at the source you have no idea what the '==' operator will do.
I have always wondered why all languages don't enforce this?
Because it is often really convenient, particularly with a simple macro preprocessor like cpp but in other circumstances too. I like gcc's approach of forcing you (if you have the right warning enabled) to put an extra pair of unnecessary parentheses around assignments in expressions.
because, for example in C, such a incompatible change would alienate most developers used to the very ideomatic

        if((val = function(args)) != expected)
            return val;
A better solution is gcc's which forces you (if you enable the restriction) to put an extra pair of parens around inline assignments.
The parenthesis in this attack are sufficient to prevent that warning.