cfdm.core.ParametersDomainAncillaries.copy¶
-
ParametersDomainAncillaries.copy()[source]¶ Return a deep copy.
f.copy()is equivalent tocopy.deepcopy(f).New in version (cfdm): 1.7.0
- Returns
ParametersDomainAncillariesThe deep copy.
Examples
>>> f = cfdm.core.ParametersDomainAncillaries() >>> g = f.copy()