(self, start, finish)
| 737 | return connection.operators[self.lookup_name] % rhs |
| 738 | |
| 739 | def get_bound_params(self, start, finish): |
| 740 | raise NotImplementedError( |
| 741 | "subclasses of YearLookup must provide a get_bound_params() method" |
| 742 | ) |
| 743 | |
| 744 | |
| 745 | class YearExact(YearLookup, Exact): |
no outgoing calls