A CF-compliant earth science data analysis library
FieldList.
copy
Return a deep copy.
f.copy() is equivalent to copy.deepcopy(f).
f.copy()
copy.deepcopy(f)
The deep copy.
Examples:
>>> g = f.copy() >>> g is f False >>> f.equals(g) True >>> import copy >>> h = copy.deepcopy(f) >>> h is f False >>> f.equals(g) True