Home | History | Annotate | Download | only in test

Lines Matching refs:set_ctx

2220             set_ctx = getcontext()
2223 self.assertIsNot(orig_ctx, set_ctx, 'did not copy the context')
2224 self.assertIs(set_ctx, enter_ctx, '__enter__ returned wrong context')
2231 set_ctx = getcontext()
2234 self.assertEqual(set_ctx.prec, new_ctx.prec, 'did not set correct context')
2235 self.assertIsNot(new_ctx, set_ctx, 'did not copy the context')
2236 self.assertIs(set_ctx, enter_ctx, '__enter__ returned wrong context')