Called by QCombination objects.
(self, combination)
| 16 | """Base visitor class for visiting Q-object nodes in a query tree.""" |
| 17 | |
| 18 | def visit_combination(self, combination): |
| 19 | """Called by QCombination objects.""" |
| 20 | return combination |
| 21 | |
| 22 | def visit_query(self, query): |
| 23 | """Called by (New)Q objects.""" |