A complete implementation of the CF data model
Container.
_set_component
Set a component.
New in version 1.7.0.
See also
_del_component, _get_component, _has_component
_del_component
_get_component
_has_component
str
The name of the component.
The value for the component.
None
Examples:
>>> f._set_component('foo', 'bar') >>> f._has_component('foo') True >>> f._get_component('foo') 'bar' >>> f._del_component('foo') 'bar' >>> f._has_component('foo') False