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

@@ -58,15 +58,15 @@
# WM_PROJECT_VERSION=plus naming internally.
#
##############################################################################
from spack import *
from spack.environment import *
import llnl.util.tty as tty
import glob
import re
import shutil
import os
from spack import *
import llnl.util.tty as tty
# Not the nice way of doing things, but is a start for refactoring
__all__ = [
'add_extra_files',