-
Notifications
You must be signed in to change notification settings - Fork 25
Description
Currently all committed types are piped through pyfive.h5py.Datatype. There all types are wrapped in EnumTypeID, which currently breaks for non-enum, like Compound.
Lines 12 to 22 in fefabba
| class Datatype: | |
| """ | |
| Provides a minimal instantiation of an h5py DataType | |
| suitable for use with enumerations. | |
| """ | |
| def __init__(self, name, hfile, raw_dtype): | |
| self.id = TypeEnumID(raw_dtype) | |
| path = PurePosixPath(name) | |
| self.name = path.name | |
| self.parent = str(path.parent) if str(path.parent) != '' else '/' | |
| self.file = hfile |
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels