Can global variable be passed into Python function?
Michael Torrie
torriem at gmail.com
Sat Mar 1 13:06:54 EST 2014
On 03/01/2014 10:29 AM, Marko Rauhamaa wrote:
> Michael Torrie <torriem at gmail.com>:
>
>> No, '==' works fine no matter what objects you assign to your state
>> variables.
>
> Well, it doesn't since
>
> >>> a = float("nan")
> >>> a is a
> True
> >>> a == a
> False
>
> More generally, it depends on how the __eq__ method has been implemented
> for the class. You might even (foolishly) define a class such that:
>
> >>> a == b
> False
> >>> a != b
> False
Yes, good point.
More information about the Python-list
mailing list