MCPcopy Create free account
hub / github.com/clips/pattern / insert

Method insert

pattern/text/en/wordlist/__init__.py:42–43  ·  view source on GitHub ↗
(self, i, v)

Source from the content-addressed store, hash-verified

40 def __setitem__(self, i, v):
41 self._load(); self._data[i] = v
42 def insert(self, i, v):
43 self._load(); self._data.insert(i, v)
44 def append(self, v):
45 self._load(); self._data.append(v)
46 def extend(self, v):

Callers 15

__init__.pyFile · 0.45
inflect.pyFile · 0.45
__init__.pyFile · 0.45
inflect.pyFile · 0.45
__init__.pyFile · 0.45
inflect.pyFile · 0.45
__init__.pyFile · 0.45
__init__.pyFile · 0.45
inflect.pyFile · 0.45
__init__.pyFile · 0.45
inflect.pyFile · 0.45

Calls 1

_loadMethod · 0.95

Tested by

no test coverage detected