We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3c52dc commit 6cbb94cCopy full SHA for 6cbb94c
zarr/tests/test_hierarchy.py
@@ -492,6 +492,8 @@ def test_getattr(self):
492
# test
493
eq(g1['foo'], g1.foo)
494
eq(g2['bar'], g2.bar)
495
+ # test that hasattr returns False instead of an exception (issue #88)
496
+ eq(hasattr(g1, '__unexistingattribute__'), False)
497
498
def test_group_repr(self):
499
g = self.create_group()
0 commit comments