remove wildcards from make spack core and packages

- This removes all wildcard imports EXCEPT `from spack import *` in packages
This commit is contained in:
Todd Gamblin
2017-10-23 14:23:00 +02:00
parent 7757ebc0bc
commit 7dd79094b0
85 changed files with 233 additions and 163 deletions

View File

@@ -22,10 +22,10 @@
# License along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
##############################################################################
import os
from spack import *
from spack.package_test import *
from spack.util.executable import Executable
import os.path
from spack.package_test import compile_c_and_execute, compare_output_file
class Atlas(Package):