cf.Dict.copy

Dict.copy()[source]

Return a deep copy.

d.copy() is equivalent to copy.deepcopy(d).

Returns:
out
:

The deep copy.

Examples:
>>> e = d.copy()