MCPcopy Index your code
hub / github.com/clips/pattern / copy

Method copy

pattern/vector/__init__.py:139–140  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

137 def fromkeys(cls, k, default=None):
138 return readonlydict((k, default) for k in k)
139 def copy(self):
140 return readonlydict(self)
141 def __setitem__(self, k, v):
142 raise ReadOnlyError
143 def __delitem__(self, k):

Callers

nothing calls this directly

Calls 1

readonlydictClass · 0.85

Tested by

no test coverage detected