diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-05-19 23:28:17 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-05-19 23:28:17 (GMT) |
commit | 97650c632c4798f939cef6222292e4cf24c7595e (patch) | |
tree | d06c7f3397ac11c31b2aa74cc44f0f2b781b16fc | |
parent | 9d1cae7754e208dbb5a45769563eb5581d4b3dd4 (diff) | |
download | SCons-97650c632c4798f939cef6222292e4cf24c7595e.zip SCons-97650c632c4798f939cef6222292e4cf24c7595e.tar.gz SCons-97650c632c4798f939cef6222292e4cf24c7595e.tar.bz2 |
address sider issues
-rw-r--r-- | SCons/Tool/as.py | 7 | ||||
-rw-r--r-- | test/fixture/mygcc.py | 1 |
2 files changed, 4 insertions, 4 deletions
diff --git a/SCons/Tool/as.py b/SCons/Tool/as.py index 2c9f1a1..8ec0ce2 100644 --- a/SCons/Tool/as.py +++ b/SCons/Tool/as.py @@ -32,9 +32,10 @@ selection method. __revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" - -#forward proxy to the preffered asm version -from SCons.Tool.asm import * +# +# forward proxy to the preffered asm version +# +from SCons.Tool.asm import generate, exists # Local Variables: diff --git a/test/fixture/mygcc.py b/test/fixture/mygcc.py index 02480ee..d701883 100644 --- a/test/fixture/mygcc.py +++ b/test/fixture/mygcc.py @@ -1,5 +1,4 @@ import getopt -import os import sys compiler = sys.argv[1] |