Home | History | Annotate | Download | only in test

Lines Matching refs:set_ctx

3556             set_ctx = getcontext()
3559 self.assertIsNot(orig_ctx, set_ctx, 'did not copy the context')
3560 self.assertIs(set_ctx, enter_ctx, '__enter__ returned wrong context')
3572 set_ctx = getcontext()
3575 self.assertEqual(set_ctx.prec, new_ctx.prec, 'did not set correct context')
3576 self.assertIsNot(new_ctx, set_ctx, 'did not copy the context')
3577 self.assertIs(set_ctx, enter_ctx, '__enter__ returned wrong context')