You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, versioned-hdf5 uses reprs that pretty closely follow the h5py reprs for the analogous data types. There provide no useful information about the data hierarchy that lives under the object in question:
I'd really like Group objects to actually say the name of their keys, and provide some hint about the type of object stored under each key.
This isn't a major problem, but it is annoying to debug because you always have to call pp list(obj) or pp obj.keys() to find out what data is stored in a group or file.
The text was updated successfully, but these errors were encountered:
Currently,
versioned-hdf5
uses reprs that pretty closely follow theh5py
reprs for the analogous data types. There provide no useful information about the data hierarchy that lives under the object in question:I'd really like
Group
objects to actually say the name of their keys, and provide some hint about the type of object stored under each key.This isn't a major problem, but it is annoying to debug because you always have to call
pp list(obj)
orpp obj.keys()
to find out what data is stored in a group or file.The text was updated successfully, but these errors were encountered: