bpo-34179: Make sure decimal context doesn't affect other tests. (#8376)

This commit is contained in:
Bo Bayles 2018-07-21 12:54:14 -05:00 committed by Stefan Krah
parent 56868f940e
commit 938045f335
1 changed files with 12 additions and 12 deletions

View File

@ -872,7 +872,7 @@ def convert_values(ns_timestamps):
ns_timestamps = self._rounding_values(use_float)
valid_values = convert_values(ns_timestamps)
for time_rnd, decimal_rnd in ROUNDING_MODES :
context = decimal.getcontext()
with decimal.localcontext() as context:
context.rounding = decimal_rnd
for value in valid_values: