cf.DomainAncillary.comment¶
-
DomainAncillary.
comment
¶ The comment CF property.
Miscellaneous information about the data or methods used to produce it. See http://cfconventions.org/latest.html for details.
Examples:
>>> f.comment = 'This simulation was done on an HP-35 calculator' >>> f.comment 'This simulation was done on an HP-35 calculator' >>> del f.comment
>>> f.set_property('comment', 'a comment') >>> f.has_property('comment') True >>> f.get_property('comment') 'a comment' >>> f.del_property('comment')