Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Test None for an object that does not implement == (http://www.velocityreviews.com/forums/t807341-test-none-for-an-object-that-does-not-implement.html)

GZ 12-25-2011 07:09 AM

Test None for an object that does not implement ==
 
Hi,

I run into a weird problem. I have a piece of code that looks like the
following:

f(...., a=None, c=None):
assert (a==None)==(c==None)


The problem is that == is not implemented sometimes for values in a
and c, causing an exception NotImplementedError.

I ended up doing assert (not a)==(not c), but I think this code has
other issues, for example, when a=[] and c=['a'], the assertion will
fail, although a is not None.

So how do I reliably test if a value is None or not?

Thanks,
gz

Paul Rubin 12-25-2011 07:28 AM

Re: Test None for an object that does not implement ==
 
GZ <zyzhu2000@gmail.com> writes:
> assert (a==None)==(c==None)...
> So how do I reliably test if a value is None or not?


Equality is the wrong comparison to start with. Use "a is None".

Nobody 12-25-2011 09:38 AM

Re: Test None for an object that does not implement ==
 
On Sat, 24 Dec 2011 23:09:50 -0800, GZ wrote:

> I run into a weird problem. I have a piece of code that looks like the
> following:
>
> f(...., a=None, c=None):
> assert (a==None)==(c==None)
>
>
> The problem is that == is not implemented sometimes for values in a
> and c, causing an exception NotImplementedError.


I have no idea how that can happen. If a.__eq__(None) returns
NotImplemented, the interpreter should flip the test and perform the
equivalent of None.__eq__(a), which will return False.

> So how do I reliably test if a value is None or not?


As Paul says, use "is" to check whether a value _is_ None. Checking for
equality is almost certainly the wrong thing to do; nothing should compare
equal to None except for None itself, so "x is None" and "x == None"
shouldn't produce different results unless there's a bug in the comparison
method.


Lie Ryan 12-25-2011 11:10 AM

Re: Test None for an object that does not implement ==
 
On 12/25/2011 08:38 PM, Nobody wrote:

> nothing should compare equal to None except for None itself, so "x is None"
> and "x == None" shouldn't produce different results unless there's a
> bug in the comparison method.


not necessarily, for example:

import random
class OddClass:
def __eq__(self, other):
return [True, False][random.randint(0, 1)]

x = OddClass()
print x == None
print x == None
print x == None
print x == None
print x == None


Now, whether doing something like that is advisable or not, that's a
different question; however nothing in python states that you couldn't
have something that compare equal to None whether there is a bug or not
in the comparison method.


Roy Smith 12-25-2011 01:17 PM

Re: Test None for an object that does not implement ==
 
In article <mailman.4061.1324811442.27778.python-list@python.org>,
Lie Ryan <lie.1296@gmail.com> wrote:

> Now, whether doing something like that is advisable or not, that's a
> different question; however nothing in python states that you couldn't
> have something that compare equal to None whether there is a bug or not
> in the comparison method.


Just for fun, I tried playing around with subclassing NoneType and
writing an __eq__ for my subclass. Turns out, you can't do that:

Traceback (most recent call last):
File "./none.py", line 5, in <module>
class Nihil(NoneType):
TypeError: Error when calling the metaclass bases
type 'NoneType' is not an acceptable base type

Chris Angelico 12-25-2011 01:35 PM

Re: Test None for an object that does not implement ==
 
On Mon, Dec 26, 2011 at 12:17 AM, Roy Smith <roy@panix.com> wrote:
> Just for fun, I tried playing around with subclassing NoneType and
> writing an __eq__ for my subclass. *Turns out, you can't do that:
>
> Traceback (most recent call last):
> *File "./none.py", line 5, in <module>
> * *class Nihil(NoneType):
> TypeError: Error when calling the metaclass bases
> * *type 'NoneType' is not an acceptable base type


Yes; unfortunately quite a few Python built-in classes can't be
subclassed. It's an unfortunate fact of implementation, I think,
rather than a deliberate rule.

But then, what would you ever need to subclass None for, other than
toys and testing?

ChrisA

Steven D'Aprano 12-25-2011 01:48 PM

Re: Test None for an object that does not implement ==
 
On Mon, 26 Dec 2011 00:35:46 +1100, Chris Angelico wrote:

[...]
>> TypeError: Error when calling the metaclass bases
>> Â* Â*type 'NoneType' is not an acceptable base type

>
> Yes; unfortunately quite a few Python built-in classes can't be
> subclassed.



I can't think of any other un-subclassable classes other than NoneType.
Which ones are you thinking of?



--
Steven

Chris Angelico 12-25-2011 02:04 PM

Re: Test None for an object that does not implement ==
 
On Mon, Dec 26, 2011 at 12:48 AM, Steven D'Aprano
<steve+comp.lang.python@pearwood.info> wrote:
> I can't think of any other un-subclassable classes other than NoneType.
> Which ones are you thinking of?


I don't remember, but it was mentioned in a thread a little while ago.
Experimentation shows that 'bool' is one of them, though. This may
shed some light:

>>> class Foo(type(iter)):

pass

Traceback (most recent call last):
File "<pyshell#103>", line 1, in <module>
class Foo(type(iter)):
TypeError: type 'builtin_function_or_method' is not an acceptable base type

I think there are certain types that are actually not implemented as
classes, and hence cannot be subclassed. This is almost certainly an
implementation detail though; my testing was done in Py3.2 (on Windows
fwiw).

ChrisA

Roy Smith 12-25-2011 02:13 PM

Re: Test None for an object that does not implement ==
 
In article <mailman.4066.1324820148.27778.python-list@python.org>,
Chris Angelico <rosuav@gmail.com> wrote:

> On Mon, Dec 26, 2011 at 12:17 AM, Roy Smith <roy@panix.com> wrote:
> > Just for fun, I tried playing around with subclassing NoneType and
> > writing an __eq__ for my subclass. *Turns out, you can't do that:
> >
> > Traceback (most recent call last):
> > *File "./none.py", line 5, in <module>
> > * *class Nihil(NoneType):
> > TypeError: Error when calling the metaclass bases
> > * *type 'NoneType' is not an acceptable base type

>
> Yes; unfortunately quite a few Python built-in classes can't be
> subclassed. It's an unfortunate fact of implementation, I think,
> rather than a deliberate rule.
>
> But then, what would you ever need to subclass None for, other than
> toys and testing?


You might be to differentiate between temporary and permanent failures.
Let's say you have a WidgetPool, containing Widgets of various classes.

class WidgetPool:
def get_widget(class_name):
"""Return a Widget of a given class. If there are no such
Widgets available, returns None."""
[...]

You might want to return a None subclass to signify, "No such Widgets
are currently available, but they might be if you try again in a little
while", as opposed to "No such Widgets will ever be available".

If you were designing the interface from scratch, you would probably
represent that with an exception hierarchy. However, if this was an old
interface that you were modifying, this might be a way to return a
richer failure indication for new clients without breaking backwards
compatibility for existing code.

Of course, the existing code would probably be using "is None" tests,
and break anyway. But at least that's a plausible scenario for None
subclasses.

Chris Angelico 12-25-2011 02:23 PM

Re: Test None for an object that does not implement ==
 
On Mon, Dec 26, 2011 at 1:13 AM, Roy Smith <roy@panix.com> wrote:
> If you were designing the interface from scratch, you would probably
> represent that with an exception hierarchy


Or possibly with "returns a False value", giving the option of None
for none available, False for none will ever be available. Of course,
you then have to guarantee that your live return values will always
boolify as True.

ChrisA


All times are GMT. The time now is 02:39 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57