| 692 | |
| 693 | |
| 694 | class LimitClause(object): |
| 695 | |
| 696 | def __init__(self, limit): |
| 697 | self.limit = limit |
| 698 | |
| 699 | def __deepcopy__(self, memo): |
| 700 | return LimitClause(deepcopy(self.limit, memo)) |
| 701 | |
| 702 | |
| 703 | class InsertClause(object): |
no outgoing calls
no test coverage detected