python: Change 'clone' function names to 'copy'.
[sliver-openvswitch.git] / python / ovs / db / data.py
index 15a7151..334c261 100644 (file)
@@ -241,7 +241,7 @@ class Datum(object):
     def __contains__(self, item):
         return item in self.values
 
-    def clone(self):
+    def copy(self):
         return Datum(self.type, dict(self.values))
 
     @staticmethod