Possible Duplicate:
When is the `==` operator not equivalent to the `is` operator? (Python)
I am using Python 2.x.
My editor gives me a 'warning' underline when I compare my_var == None, but no warning when I use my_var is None.
I did a test in the Python shell and determined both are valid syntax, but my editor seems to be saying that my_var is None is preferred.
Is this the case, and if so, why?
is- python.org/dev/peps/pep-0008/#programming-recommendations – Volatility Jan 9 at 22:11