From c4eed1ab36078a84bad08c13da1c754fbb63f942 Mon Sep 17 00:00:00 2001 From: anatoly techtonik Date: Sat, 23 Aug 2014 13:31:44 +0300 Subject: 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 --- testing/framework/TestUnit/taprunner.py | 6 ++++-- 1 file 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 +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): -- cgit v0.12