diff options
Diffstat (limited to 'Lib/test/test_buffer.py')
-rw-r--r-- | Lib/test/test_buffer.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Lib/test/test_buffer.py b/Lib/test/test_buffer.py index b83f2f1..f302da4 100644 --- a/Lib/test/test_buffer.py +++ b/Lib/test/test_buffer.py @@ -17,7 +17,7 @@ from test import support from itertools import permutations, product from random import randrange, sample, choice import warnings -import sys, array, io +import sys, array, io, os from decimal import Decimal from fractions import Fraction @@ -37,7 +37,8 @@ except ImportError: ctypes = None try: - with warnings.catch_warnings(): + with support.EnvironmentVarGuard() as os.environ, \ + warnings.catch_warnings(): from numpy import ndarray as numpy_array except ImportError: numpy_array = None |