(self, memo)
| 510 | return '%s<%s>' % (type(self).__name__, ', '.join(repr(col) for col in self.cols)) |
| 511 | |
| 512 | def __deepcopy__(self, memo): |
| 513 | other = InlineView(deepcopy(self.query, memo)) |
| 514 | other.alias = self.alias |
| 515 | other.is_visible = self.is_visible |
| 516 | return other |
| 517 | |
| 518 | |
| 519 | class WithClause(object): |