Lines Matching refs:expect
70 # When 'dry_run' is set to true, expect tuples are ignored and the actual
244 self.expect = self.expected_list.pop(0)
272 if self.expect:
273 self.check_equal(self.expect[0], event, 'Wrong event type')
278 elif len(self.expect) > 3:
280 bps, temporaries = self.expect[3]
296 if not isinstance(self.exc_info[1], self.expect[3]):
309 s = len(self.expect)
312 self.check_equal(self.expect[1], lineno, 'Wrong line number')
314 self.check_equal(self.expect[2], self.frame.f_code.co_name,
318 if len(self.expect) > size:
319 raise BdbSyntaxError('Invalid size of the %s expect tuple: %s' %
320 (self.event, self.expect))
359 msg += ' Expected: %s\n' % str(self.expect)
405 if self.expect: