[Matrix-SIG] Bug in generating .pyc files!!!

Just van Rossum just@letterror.com
Mon, 1 Nov 1999 19:38:00 +0100


>So, it seems that 'is' is interpreted differently when .pyc file is used.
>I think this is a serious problem and should be fixed.

The 'is' operator tests for object identity, only use it when you know what
you're doing ;-). You need the '==' operator.

Just