diff options
author | Steven Knight <knight@baldmt.com> | 2009-02-11 17:57:38 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2009-02-11 17:57:38 (GMT) |
commit | a33fd40cf855819ce49a3c93a831cb28a97a0177 (patch) | |
tree | 9207b31537e85de793ef3cdcc9a18be689ce2805 /test/exceptions.py | |
parent | 33b254500d0cb179b4446537482905748ff32cf9 (diff) | |
download | SCons-a33fd40cf855819ce49a3c93a831cb28a97a0177.zip SCons-a33fd40cf855819ce49a3c93a831cb28a97a0177.tar.gz SCons-a33fd40cf855819ce49a3c93a831cb28a97a0177.tar.bz2 |
Remove more unnecessary imports from test scripts.
Diffstat (limited to 'test/exceptions.py')
-rw-r--r-- | test/exceptions.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test/exceptions.py b/test/exceptions.py index 12a3430..6a68c79 100644 --- a/test/exceptions.py +++ b/test/exceptions.py @@ -25,14 +25,12 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" import re -import sys -import TestCmd import TestSCons _python_ = TestSCons._python_ -test = TestSCons.TestSCons(match = TestCmd.match_re_dotall) +test = TestSCons.TestSCons(match = TestSCons.match_re_dotall) SConstruct_path = test.workpath('SConstruct') |