Home | History | Annotate | Download | only in python2.7

Lines Matching refs:match

284     def read_until(self, match, timeout=None):
287 When no match is found, return whatever is available instead,
293 return self._read_until_with_poll(match, timeout)
295 return self._read_until_with_select(match, timeout)
297 def _read_until_with_poll(self, match, timeout):
302 n = len(match)
308 i = self.cookedq.find(match)
328 i = self.cookedq.find(match, i)
342 def _read_until_with_select(self, match, timeout=None):
347 n = len(match)
349 i = self.cookedq.find(match)
365 i = self.cookedq.find(match, i)
636 first regular expression that matches; the match object
637 returned; and the text read up till and including the match.
644 If a regular expression ends with a greedy match (e.g. '.*')
645 or if more than one expression can match the same input, the