Kaydet (Commit) 06949585 authored tarafından Miss Islington (bot)'s avatar Miss Islington (bot) Kaydeden (comit) Serhiy Storchaka

[3.6] bpo-31792: Restore os.environ in test_buffer when import numpy. (GH-4007) (#4009)

(cherry picked from commit 676db4bb)
üst cfc60472
...@@ -17,7 +17,7 @@ from test import support ...@@ -17,7 +17,7 @@ from test import support
from itertools import permutations, product from itertools import permutations, product
from random import randrange, sample, choice from random import randrange, sample, choice
import warnings import warnings
import sys, array, io import sys, array, io, os
from decimal import Decimal from decimal import Decimal
from fractions import Fraction from fractions import Fraction
...@@ -37,7 +37,8 @@ except ImportError: ...@@ -37,7 +37,8 @@ except ImportError:
ctypes = None ctypes = None
try: try:
with warnings.catch_warnings(): with support.EnvironmentVarGuard() as os.environ, \
warnings.catch_warnings():
from numpy import ndarray as numpy_array from numpy import ndarray as numpy_array
except ImportError: except ImportError:
numpy_array = None numpy_array = None
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment