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

Method __init__

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

Source from the content-addressed store, hash-verified

158# Read-only list, used for Model.documents.
159class readonlylist(list):
160 def __init__(self, *args, **kwargs):
161 list.__init__(self, *args, **kwargs)
162 def __setitem__(self, i, v):
163 raise ReadOnlyError
164 def __delitem__(self, i):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected