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

Method __setitem__

pattern/db/__init__.py:1903–1905  ·  view source on GitHub ↗
(self, i, row)

Source from the content-addressed store, hash-verified

1901 self._datasheet = datasheet
1902
1903 def __setitem__(self, i, row):
1904 self._datasheet.pop(i)
1905 self._datasheet.insert(i, row)
1906 def __getitem__(self, i):
1907 return list.__getitem__(self._datasheet, i)
1908 def __delitem__(self, i):

Callers

nothing calls this directly

Calls 2

popMethod · 0.45
insertMethod · 0.45

Tested by

no test coverage detected