Home | History | Annotate | Download | only in pexpect

Lines Matching refs:pattern_list

1388     def expect_list(self, pattern_list, timeout=-1, searchwindowsize=-1):
1391 index into the pattern_list that matched the child output. The list may
1400 return self.expect_loop(searcher_re(pattern_list),
1403 def expect_exact(self, pattern_list, timeout=-1, searchwindowsize=-1):
1406 of compiled regular expressions in 'pattern_list'. The 'pattern_list'
1417 if (type(pattern_list) in types.StringTypes or
1418 pattern_list in (TIMEOUT, EOF)):
1419 pattern_list = [pattern_list]
1420 return self.expect_loop(searcher_string(pattern_list),