summaryrefslogtreecommitdiffstats
path: root/testing/framework
diff options
context:
space:
mode:
authoranatoly techtonik <techtonik@gmail.com>2014-08-23 10:31:44 (GMT)
committeranatoly techtonik <techtonik@gmail.com>2014-08-23 10:31:44 (GMT)
commitc4eed1ab36078a84bad08c13da1c754fbb63f942 (patch)
tree41f499ccfa4345d064898b3b8d6c394e00a39b90 /testing/framework
parent6db60dbe1c3dc28f24bfca48135bcb4bc9bd66d6 (diff)
downloadSCons-c4eed1ab36078a84bad08c13da1c754fbb63f942.zip
SCons-c4eed1ab36078a84bad08c13da1c754fbb63f942.tar.gz
SCons-c4eed1ab36078a84bad08c13da1c754fbb63f942.tar.bz2
taprunner 0.2 - remove unused import that failed Python 2.6
Crash evidence: http://buildbot.scons.org/builders/ubuntu-python-2.6/builds/118/steps/shell/logs/stdio
Diffstat (limited to 'testing/framework')
-rw-r--r--testing/framework/TestUnit/taprunner.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/testing/framework/TestUnit/taprunner.py b/testing/framework/TestUnit/taprunner.py
index 01e0e81..31eb963 100644
--- a/testing/framework/TestUnit/taprunner.py
+++ b/testing/framework/TestUnit/taprunner.py
@@ -5,12 +5,14 @@ http://testanything.org/tap-version-13-specification.html
Public domain work by:
anatoly techtonik <techtonik@gmail.com>
+Changes:
+ 0.2 - removed unused import that failed on Python 2.6
+ 0.1 - initial release
"""
-from unittest import suite
from unittest.runner import TextTestRunner, TextTestResult
-__version__ = "0.1"
+__version__ = "0.2"
class TAPTestResult(TextTestResult):