Is hasattr really harmful?

"The (hidden) problem with hasattr is that it swallows exceptions, which in your normal business logic you really don’t want to."

Also see https://github.com/plone/Products.CMFPlone/blob/master/Products/CMFPlone/utils.py#L412

In this case the ValueError is never seen.

>>> class Foo(object):
...     @property
...     def my_attr(self):
...         raise ValueError('nope, nope, nope')
...
>>> bar = Foo()
>>> bar.my_attr
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 4, in my_attr
ValueError: nope, nope, nope
>>> hasattr(Foo, 'my_attr')
True
>>> hasattr(bar, 'my_attr')
False
>>> getattr(bar, 'my_attr', None)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 4, in my_attr
ValueError: nope, nope, nope
>>>