Allow a maximum of N intervening non-matched terms between phrase terms (0 means exact phrase).
(self, slop: int)
| 154 | return self |
| 155 | |
| 156 | def slop(self, slop: int) -> "Query": |
| 157 | """Allow a maximum of N intervening non-matched terms between |
| 158 | phrase terms (0 means exact phrase). |
| 159 | """ |
| 160 | self._slop = slop |
| 161 | return self |
| 162 | |
| 163 | def timeout(self, timeout: float) -> "Query": |
| 164 | """overrides the timeout parameter of the module""" |
no outgoing calls