(self, memo)
| 664 | return queries |
| 665 | |
| 666 | def __deepcopy__(self, memo): |
| 667 | other = UnionClause(deepcopy(self.query, memo)) |
| 668 | other.all = self.all |
| 669 | return other |
| 670 | |
| 671 | |
| 672 | class OrderByClause(object): |
nothing calls this directly
no test coverage detected