![]() |
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 |
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". |
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. |
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. |
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 |
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 |
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 |
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 |
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. |
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.