The member variable boolean_expr will be an instance of a boolean func defined below.
| 629 | |
| 630 | |
| 631 | class HavingClause(object): |
| 632 | '''The member variable boolean_expr will be an instance of a boolean func |
| 633 | defined below. |
| 634 | |
| 635 | ''' |
| 636 | |
| 637 | def __init__(self, boolean_expr): |
| 638 | self.boolean_expr = boolean_expr |
| 639 | |
| 640 | def __deepcopy__(self, memo): |
| 641 | return HavingClause(deepcopy(self.boolean_expr, memo)) |
| 642 | |
| 643 | |
| 644 | class UnionClause(object): |
no outgoing calls
no test coverage detected