Achilleas Koutsou
Achilleas Koutsou
I've changed the title of this issue to directly address test coverage. There's two things that we need to address: 1. The current tests need to be checked to make...
Go ahead @maayanktyagi.
TestProperty now has a lot of test stubs that need to be implemented. See PR #66.
It does indeed make sense and I had a similar thought while preparing the examples in the previous issue. We're always looking out for adding syntactic sugar and convenience methods...
I don't think there's any reason not to have them. I think we always relied on `del container[objectname]` since our container objects are meant to behave like dictionaries, but maybe...
I was thinking transient, which is why I mentioned the DataView.
There's an open Pull Request for this in the nixworks library: https://github.com/G-Node/nixworks/pull/19 It needs a bit more testing and a deeper review, which is why it's been open for so...
Hi. Thanks for the report. It seems there was a mistake in the latest release and the tagged commit didn't contain the usual info updating. We'll make sure to fix...
We should enable the checks in `pylintrc` when this is done.
Since h5py 2.10, bitfields can be read but the type needs to be explicitly set: https://docs.h5py.org/en/latest/whatsnew/2.10.html#new-features ```python with dset.astype(numpy.bool): arr = dset[:] ```