(self, combiner, other,
closing_combiner=None, has_inner_condition=False)
| 30 | return path |
| 31 | |
| 32 | def join(self, combiner, other, |
| 33 | closing_combiner=None, has_inner_condition=False): |
| 34 | res = XPathExprOrig.join(self, combiner, other, |
| 35 | closing_combiner=closing_combiner, |
| 36 | has_inner_condition=has_inner_condition) |
| 37 | self.post_condition = other.post_condition |
| 38 | return res |
| 39 | |
| 40 | |
| 41 | # keep cssselect < 0.8 compat for now |
no outgoing calls