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/AS | |
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/AS')
-rw-r--r-- | test/AS/ASCOM.py | 2 | ||||
-rw-r--r-- | test/AS/ASCOMSTR.py | 2 | ||||
-rw-r--r-- | test/AS/ASFLAGS.py | 2 | ||||
-rw-r--r-- | test/AS/ASPP.py | 2 | ||||
-rw-r--r-- | test/AS/ASPPCOM.py | 1 | ||||
-rw-r--r-- | test/AS/ASPPCOMSTR.py | 2 | ||||
-rw-r--r-- | test/AS/ASPPFLAGS.py | 2 | ||||
-rw-r--r-- | test/AS/ml.py | 1 |
8 files changed, 6 insertions, 8 deletions
diff --git a/test/AS/ASCOM.py b/test/AS/ASCOM.py index c246806..1be592c 100644 --- a/test/AS/ASCOM.py +++ b/test/AS/ASCOM.py @@ -29,7 +29,7 @@ Test the ability to configure the $ASCOM construction variable. """ import os -import sys + import TestSCons _python_ = TestSCons._python_ diff --git a/test/AS/ASCOMSTR.py b/test/AS/ASCOMSTR.py index f1f64ee..eaa344a 100644 --- a/test/AS/ASCOMSTR.py +++ b/test/AS/ASCOMSTR.py @@ -30,7 +30,7 @@ the assembly output. """ import os -import sys + import TestSCons _python_ = TestSCons._python_ diff --git a/test/AS/ASFLAGS.py b/test/AS/ASFLAGS.py index d7b7c33..5581b07 100644 --- a/test/AS/ASFLAGS.py +++ b/test/AS/ASFLAGS.py @@ -24,8 +24,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import string import sys + import TestSCons _python_ = TestSCons._python_ diff --git a/test/AS/ASPP.py b/test/AS/ASPP.py index cb9d8dd..d8fb3be 100644 --- a/test/AS/ASPP.py +++ b/test/AS/ASPP.py @@ -24,8 +24,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import string import sys + import TestSCons _python_ = TestSCons._python_ diff --git a/test/AS/ASPPCOM.py b/test/AS/ASPPCOM.py index b3c04a9..53f4add 100644 --- a/test/AS/ASPPCOM.py +++ b/test/AS/ASPPCOM.py @@ -28,7 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Test the ability to configure the $ASPPCOM construction variable. """ -import sys import TestSCons _python_ = TestSCons._python_ diff --git a/test/AS/ASPPCOMSTR.py b/test/AS/ASPPCOMSTR.py index 0e612ad..20e3de0 100644 --- a/test/AS/ASPPCOMSTR.py +++ b/test/AS/ASPPCOMSTR.py @@ -30,7 +30,7 @@ the displayed assembler string. """ import string -import sys + import TestSCons _python_ = TestSCons._python_ diff --git a/test/AS/ASPPFLAGS.py b/test/AS/ASPPFLAGS.py index b8fdf2e..e306c22 100644 --- a/test/AS/ASPPFLAGS.py +++ b/test/AS/ASPPFLAGS.py @@ -24,8 +24,8 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" -import string import sys + import TestSCons _python_ = TestSCons._python_ diff --git a/test/AS/ml.py b/test/AS/ml.py index af7fc17..a731efb 100644 --- a/test/AS/ml.py +++ b/test/AS/ml.py @@ -28,7 +28,6 @@ __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" Verify correct use of the live 'ml' assembler. """ -import os import string import sys |