summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2020-10-26 20:56:03 (GMT)
committerMats Wichmann <mats@linux.com>2020-10-26 20:56:03 (GMT)
commitdabd7986f70ef050228d1ee8e4ace67419d7efc0 (patch)
treee6e70eecd329dbe7a23de2493c92d7fd02973e26
parente046132a4e1c9261271676369022241c0e1a8bfc (diff)
downloadSCons-dabd7986f70ef050228d1ee8e4ace67419d7efc0.zip
SCons-dabd7986f70ef050228d1ee8e4ace67419d7efc0.tar.gz
SCons-dabd7986f70ef050228d1ee8e4ace67419d7efc0.tar.bz2
Fix a sider complaint in EnvironmentTests.py
Signed-off-by: Mats Wichmann <mats@linux.com>
-rw-r--r--SCons/EnvironmentTests.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/SCons/EnvironmentTests.py b/SCons/EnvironmentTests.py
index e308865..53dd9a7 100644
--- a/SCons/EnvironmentTests.py
+++ b/SCons/EnvironmentTests.py
@@ -33,7 +33,13 @@ from collections import UserDict as UD, UserList as UL
import TestCmd
import TestUnit
-from SCons.Environment import *
+from SCons.Environment import (
+ Environment,
+ NoSubstitutionProxy,
+ OverrideEnvironment,
+ SubstitutionEnvironment,
+ is_valid_construction_var,
+)
import SCons.Warnings
def diff_env(env1, env2):