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