Home | History | Annotate | Download | only in test

Lines Matching defs:_exit

492         def _exit(*args, **kwds):
498 f = stack.callback(_exit, *args, **kwds)
500 f = stack.callback(_exit, *args)
502 f = stack.callback(_exit, **kwds)
504 f = stack.callback(_exit)
505 self.assertIs(f, _exit)
507 self.assertIs(wrapper.__wrapped__, _exit)
508 self.assertNotEqual(wrapper.__name__, _exit.__name__)
509 self.assertIsNone(wrapper.__doc__, _exit.__doc__)
557 def _exit():
559 self.assertIsNotNone(_exit)
569 def _exit():
571 self.assertIsNotNone(_exit)
580 def _exit():
582 self.assertIsNotNone(_exit)