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

Method __delitem__

pattern/db/__init__.py:1970–1971  ·  view source on GitHub ↗
(self, j)

Source from the content-addressed store, hash-verified

1968 raise IndexError, "list index out of range"
1969 return self._cache.setdefault(j, DatasheetColumn(self._datasheet, j))
1970 def __delitem__(self, j):
1971 self.pop(j)
1972 def __len__(self):
1973 return len(self._datasheet) > 0 and len(self._datasheet[0]) or 0
1974 def __iter__(self):

Callers

nothing calls this directly

Calls 1

popMethod · 0.95

Tested by

no test coverage detected