(self, column)
| 1978 | def __add__(self, column): |
| 1979 | raise TypeError, "unsupported operand type(s) for +: 'Datasheet.columns' and '%s'" % column.__class__.__name__ |
| 1980 | def __iadd__(self, column): |
| 1981 | self.append(column); return self |
| 1982 | def __eq__(self, columns): |
| 1983 | return list(self) == columns |
| 1984 | def __ne__(self, columns): |