Make os and glob imports explicit

This commit is contained in:
Sterling Harper 2015-09-14 21:42:25 -04:00
parent b9379e3c86
commit fb518a4d7c
11 changed files with 31 additions and 0 deletions

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,8 @@
#!/usr/bin/env python
import glob
import hashlib
import os
import sys
sys.path.insert(0, '..')

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,6 +1,9 @@
#!/usr/bin/env python
import glob
import os
import sys
sys.path.insert(0, '..')
from testing_harness import *

View file

@ -1,5 +1,7 @@
#!/usr/bin/env python
import glob
import os
import shutil
import sys