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

Method remove

pattern/db/__init__.py:2011–2014  ·  view source on GitHub ↗
(self, column)

Source from the content-addressed store, hash-verified

2009 self.insert(len(self), column, default, j<len(fields) and fields[j] or None)
2010
2011 def remove(self, column):
2012 if isinstance(column, DatasheetColumn) and column._datasheet == self._datasheet:
2013 self.pop(column._j); return
2014 raise ValueError, "list.remove(x): x not in list"
2015
2016 def pop(self, j):
2017 column = list(self[j]) # Return a list copy.

Callers

nothing calls this directly

Calls 1

popMethod · 0.95

Tested by

no test coverage detected