From ded039b02a955c5a4ddef1b9a817f6d505cf2f6f 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(-) (limited to 'testing') diff --git a/testing/framework/TestUnit/taprunner.py b/testing/framework/TestUnit/taprunner.py index 01e0e813..31eb9631 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 v1.2.1