diff options
author | Mats Wichmann <mats@linux.com> | 2020-10-26 20:56:03 (GMT) |
---|---|---|
committer | Mats Wichmann <mats@linux.com> | 2020-10-26 20:56:03 (GMT) |
commit | dabd7986f70ef050228d1ee8e4ace67419d7efc0 (patch) | |
tree | e6e70eecd329dbe7a23de2493c92d7fd02973e26 | |
parent | e046132a4e1c9261271676369022241c0e1a8bfc (diff) | |
download | SCons-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.py | 8 |
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): |