Bug 638219 - Get rid of wildcard imports. r=terrence

This commit is contained in:
Dirkjan Ochtman 2013-01-22 21:48:58 +01:00
parent 2a62f9f1f6
commit ca05cfb603
3 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@
import os, sys, tempfile, traceback, time, shlex
import subprocess
from subprocess import *
from subprocess import Popen, PIPE, call
from threading import Thread
import signal

View File

@ -3,7 +3,7 @@
# This includes classes for representing and parsing JS manifests.
import os, os.path, re, sys
from subprocess import *
from subprocess import Popen, PIPE
from tests import TestCase

View File

@ -4,8 +4,8 @@
# metadata, and know how to run the tests and determine failures.
import datetime, os, sys, time
from subprocess import *
from threading import *
from subprocess import Popen, PIPE
from threading import Thread
from results import TestOutput