We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If we attempt to read a variable length string created as follows:
_vlen_string = "foo" dt = h5py.special_dtype(vlen=str) v = ds.create_variable("var_len_str", ("x",), dtype=dt) v[0] = _vlen_string
which would be read by h5py as v[0] and showing as dtype('O'), it shows as dtype= ('VLEN_STRING', 0, 1) and an attempt to read v[0] returns:
v[0]
dtype('O')
dtype= ('VLEN_STRING', 0, 1)
NotImplementedError('datatype not implemented - {dtype_class}')
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If we attempt to read a variable length string created as follows:
which would be read by h5py as
v[0]
and showing asdtype('O')
, it showsas
dtype= ('VLEN_STRING', 0, 1)
and an attempt to readv[0]
returns:The text was updated successfully, but these errors were encountered: