python-benedict/benedict/core/clone.py

8 lines
85 B
Python

# -*- coding: utf-8 -*-
import copy
def clone(obj):
return copy.deepcopy(obj)