- Properties are now set using keyword arguments instead of by pairs of string and value positional arguments.
For example
dset = d_create(h5f, "A", datatype(Int64), dataspace(10,10), "chunk", (3,3))
is now written asdset = d_create(h5f, "A", datatype(Int64), dataspace(10,10), chunk=(3,3))
. Additionally the key type used for directly settingHDF5Properties
objects has changed from aString
to aSymbol
, e.g.apl["fclose_degree"] = H5F_CLOSE_STRONG
is now written asapl[:fclose_degree] = H5F_CLOSE_STRONG
(#632).