diff options
author | anatoly techtonik <techtonik@gmail.com> | 2014-08-23 10:31:44 (GMT) |
---|---|---|
committer | anatoly techtonik <techtonik@gmail.com> | 2014-08-23 10:31:44 (GMT) |
commit | c4eed1ab36078a84bad08c13da1c754fbb63f942 (patch) | |
tree | 41f499ccfa4345d064898b3b8d6c394e00a39b90 | |
parent | 6db60dbe1c3dc28f24bfca48135bcb4bc9bd66d6 (diff) | |
download | SCons-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
-rw-r--r-- | testing/framework/TestUnit/taprunner.py | 6 |
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): |