Get comment for object specified by object identifier
comment = H5O.get_comment(obj_id)
comment = H5O.get_comment(obj_id)
retrieves
the comment for the object specified by obj_id
.
fid = H5F.open('example.h5'); dset_id = H5D.open(fid,'g4/world'); comment = H5O.get_comment(dset_id); H5D.close(dset_id); H5F.close(fid);