summaryrefslogtreecommitdiff
path: root/runtest.py
diff options
context:
space:
mode:
authorStefan Zimmermann <zimmermann.code@gmail.com>2014-01-08 13:25:16 +0000
committerStefan Zimmermann <zimmermann.code@gmail.com>2014-01-08 13:25:16 +0000
commit0605d2e54160580d65ed2e4f6f587e10876d32a8 (patch)
tree5f61654ad672dbaaef043c67f2d5b74254e2abca /runtest.py
parent78ce49b5b52d41ddccf41986faba5f1d2ddc8804 (diff)
downloadscons-0605d2e54160580d65ed2e4f6f587e10876d32a8.tar.gz
Some more six.PY2/PY3 usage.
Diffstat (limited to 'runtest.py')
-rwxr-xr-xruntest.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/runtest.py b/runtest.py
index 2470a618..63802928 100755
--- a/runtest.py
+++ b/runtest.py
@@ -85,6 +85,8 @@
# rather than reinventing that wheel.)
from __future__ import print_function
+from six import PY3
+
import getopt
import glob
import os
@@ -95,9 +97,9 @@ import time
try:
import threading
- try:
+ if PY3:
from queue import Queue
- except ImportError: # Python < 3
+ else:
from Queue import Queue
threading_ok = True
except ImportError: