H5O.get_comment

Get comment for object specified by object identifier

Syntax

comment = H5O.get_comment(obj_id)

Description

comment = H5O.get_comment(obj_id) retrieves the comment for the object specified by obj_id.

Examples

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);