The member variable boolean_expr will be an instance of a boolean func defined below.
| 607 | |
| 608 | |
| 609 | class WhereClause(object): |
| 610 | '''The member variable boolean_expr will be an instance of a boolean func |
| 611 | defined below. |
| 612 | |
| 613 | ''' |
| 614 | |
| 615 | def __init__(self, boolean_expr): |
| 616 | self.boolean_expr = boolean_expr |
| 617 | |
| 618 | def __deepcopy__(self, memo): |
| 619 | return WhereClause(deepcopy(self.boolean_expr, memo)) |
| 620 | |
| 621 | |
| 622 | class GroupByClause(object): |
no outgoing calls
no test coverage detected