MCPcopy
hub / github.com/django/django / __copy__

Method __copy__

django/utils/datastructures.py:97–98  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

95 super().__setitem__(key, [value])
96
97 def __copy__(self):
98 return self.__class__([(k, v[:]) for k, v in self.lists()])
99
100 def __deepcopy__(self, memo):
101 result = self.__class__()

Callers

nothing calls this directly

Calls 1

listsMethod · 0.95

Tested by

no test coverage detected