myusuf3 / delorean

Delorean: Time Travel Made Easy
http://delorean.rtfd.org/
MIT License
1.84k stars 128 forks source link

Use '==' instead of 'is' for string comparisons. #21

Closed meastman closed 11 years ago

meastman commented 11 years ago

Using 'is' for comparing different but equal short strings may work in CPython, but it is implementation specific and shouldn't be relied on.

streeter commented 11 years ago

:+1:

myusuf3 commented 11 years ago

Thanks.