Why doesn't this work as one may have naively expected?
class Foo(object):
def __init__(self):
self.bar = 3
def __bool__(self):
return self.bar > 10
foo = Foo()
if foo:
print 'x'
else:
print 'y'
(The output is x)
|
|
For Python 2-3 compatibility, just add this to your example:
or expand the original definition of Foo to include:
You could of course define them in reverse too, where the method name is |
|||||
|
|
|
The |
|||||||||
|
|
Because the corresponding special method is called |
|||
|
|