(self, column)
| 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. |