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

Method __init__

pattern/vector/__init__.py:134–135  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

132# (updating these directly invalidates the Document and Model cache).
133class readonlydict(dict):
134 def __init__(self, *args, **kwargs):
135 dict.__init__(self, *args, **kwargs)
136 @classmethod
137 def fromkeys(cls, k, default=None):
138 return readonlydict((k, default) for k in k)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected